Partager via


Sessions.CreateSession Method

Definition

Overloads

CreateSession(String, Int32, Object)

Creates a session.

CreateSession(String, Int32, Object, Guid)

Creates a session.

CreateSession(String, Int32, Object)

Creates a session.

protected:
 abstract Microsoft::Uii::Csr::Session ^ CreateSession(System::String ^ name, int callId, System::Object ^ customer);
protected abstract Microsoft.Uii.Csr.Session CreateSession (string name, int callId, object customer);
abstract member CreateSession : string * int * obj -> Microsoft.Uii.Csr.Session
Protected MustOverride Function CreateSession (name As String, callId As Integer, customer As Object) As Session

Parameters

name
String

Specifies the session name, frequently the customer's name.

callId
Int32

Specifies the callID, if the session is started via a call.

customer
Object

Specifies the customer object reference.

Returns

The session object created.

Applies to

CreateSession(String, Int32, Object, Guid)

Creates a session.

protected:
 abstract Microsoft::Uii::Csr::Session ^ CreateSession(System::String ^ name, int callId, System::Object ^ customer, Guid sessionId);
protected abstract Microsoft.Uii.Csr.Session CreateSession (string name, int callId, object customer, Guid sessionId);
abstract member CreateSession : string * int * obj * Guid -> Microsoft.Uii.Csr.Session
Protected MustOverride Function CreateSession (name As String, callId As Integer, customer As Object, sessionId As Guid) As Session

Parameters

name
String

Specifies the session name, usually, the customer's name.

callId
Int32

Specifies the callID, if the session is started via a call.

customer
Object

Specifies the customer object reference.

sessionId
Guid

Specifies the session ID to allow clients to specify the session ID explicitly.

Returns

The session object created.

Applies to