AgentDesktopSessions Constructors

Definition

Overloads

AgentDesktopSessions()

Initializes a new instance of the AgentDesktopSessions class.

AgentDesktopSessions(Boolean)

Initializes a new instance of the AgentDesktopSessions class.

AgentDesktopSessions(Boolean, Int32)

Initializes a new instance of the AgentDesktopSessions class.

AgentDesktopSessions(Boolean, Int32, Boolean)

Initializes a new instance of the AgentDesktopSessions class.

AgentDesktopSessions()

Initializes a new instance of the AgentDesktopSessions class.

public:
 AgentDesktopSessions();
public AgentDesktopSessions ();
Public Sub New ()

Applies to

AgentDesktopSessions(Boolean)

Initializes a new instance of the AgentDesktopSessions class.

public:
 AgentDesktopSessions(bool useMultipleSessions);
public AgentDesktopSessions (bool useMultipleSessions);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions : bool -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions
Public Sub New (useMultipleSessions As Boolean)

Parameters

useMultipleSessions
Boolean

True if multiple sessions are allowed, otherwise false.

Applies to

AgentDesktopSessions(Boolean, Int32)

Initializes a new instance of the AgentDesktopSessions class.

public:
 AgentDesktopSessions(bool useMultipleSessions, int maxNumberOfSessions);
public AgentDesktopSessions (bool useMultipleSessions, int maxNumberOfSessions);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions : bool * int -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions
Public Sub New (useMultipleSessions As Boolean, maxNumberOfSessions As Integer)

Parameters

useMultipleSessions
Boolean

True if multiple sessions are allowed, otherwise false.

maxNumberOfSessions
Int32

Specifies the maximum number of sessions allowed.

Applies to

AgentDesktopSessions(Boolean, Int32, Boolean)

Initializes a new instance of the AgentDesktopSessions class.

public:
 AgentDesktopSessions(bool useMultipleSessions, int maxNumberOfSessions, bool useContextProxy);
public AgentDesktopSessions (bool useMultipleSessions, int maxNumberOfSessions, bool useContextProxy);
new Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions : bool * int * bool -> Microsoft.Uii.Desktop.SessionManager.AgentDesktopSessions
Public Sub New (useMultipleSessions As Boolean, maxNumberOfSessions As Integer, useContextProxy As Boolean)

Parameters

useMultipleSessions
Boolean

True if multiple sessions are allowed, otherwise false.

maxNumberOfSessions
Int32

Specifies the max number of sessions.

useContextProxy
Boolean

True if it uses context proxy, otherwise false.

Applies to