AgentDesktopSession Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AgentDesktopSession(String, CustomerEntity) |
Initializes a new instance of the AgentDesktopSession class. |
AgentDesktopSession(String, CustomerEntity, Guid) |
Initializes a new instance of the AgentDesktopSession class. |
AgentDesktopSession(String, Int32, CustomerEntity, Boolean) |
Initializes a new instance of the AgentDesktopSession class. |
AgentDesktopSession(String, CustomerEntity)
Initializes a new instance of the AgentDesktopSession class.
public:
AgentDesktopSession(System::String ^ name, Microsoft::Uii::Desktop::Core::CustomerEntity ^ customer);
public AgentDesktopSession (string name, Microsoft.Uii.Desktop.Core.CustomerEntity customer);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession : string * Microsoft.Uii.Desktop.Core.CustomerEntity -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession
Public Sub New (name As String, customer As CustomerEntity)
Parameters
- name
- String
Specifies the name of the Session
- customer
- CustomerEntity
Specifies the customer object that contains information about the customer that this session was created for.
Applies to
AgentDesktopSession(String, CustomerEntity, Guid)
Initializes a new instance of the AgentDesktopSession class.
public:
AgentDesktopSession(System::String ^ name, Microsoft::Uii::Desktop::Core::CustomerEntity ^ customer, Guid sessionId);
public AgentDesktopSession (string name, Microsoft.Uii.Desktop.Core.CustomerEntity customer, Guid sessionId);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession : string * Microsoft.Uii.Desktop.Core.CustomerEntity * Guid -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession
Public Sub New (name As String, customer As CustomerEntity, sessionId As Guid)
Parameters
- name
- String
Specifies the name of the Session
- customer
- CustomerEntity
Specifies the customer object that contains information about the customer that this session was created for.
- sessionId
- Guid
Specifies the session ID.
Applies to
AgentDesktopSession(String, Int32, CustomerEntity, Boolean)
Initializes a new instance of the AgentDesktopSession class.
public:
AgentDesktopSession(System::String ^ name, int callId, Microsoft::Uii::Desktop::Core::CustomerEntity ^ customer, bool useContextProxy);
public AgentDesktopSession (string name, int callId, Microsoft.Uii.Desktop.Core.CustomerEntity customer, bool useContextProxy);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession : string * int * Microsoft.Uii.Desktop.Core.CustomerEntity * bool -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSession
Public Sub New (name As String, callId As Integer, customer As CustomerEntity, useContextProxy As Boolean)
Parameters
- name
- String
Specifies the name.
- callId
- Int32
Specifies the call ID.
- customer
- CustomerEntity
Specifies the customer object.
- useContextProxy
- Boolean
True
if it uses context proxy, otherwise false
.