RemoteAutomationClientSession Constructors

Definition

Overloads

RemoteAutomationClientSession(String)

Initializes a new instance of the RemoteAutomationClientSession class using the supplied name.

RemoteAutomationClientSession(String, Guid)

Initializes a new instance of the RemoteAutomationClientSession class using the supplied parameters.

RemoteAutomationClientSession(String)

Initializes a new instance of the RemoteAutomationClientSession class using the supplied name.

public:
 RemoteAutomationClientSession(Platform::String ^ name);
 RemoteAutomationClientSession(winrt::hstring const& name);
public RemoteAutomationClientSession(string name);
function RemoteAutomationClientSession(name)
Public Sub New (name As String)

Parameters

name
String

Platform::String

winrt::hstring

The name of the remote machine. Currently not used.

Remarks

Used by remote application hosts to specify details of a remote connection and manage connections to the remote application.

The sessionId GUID is generated internally at runtime when this constructor is used.

See also

Applies to

RemoteAutomationClientSession(String, Guid)

Initializes a new instance of the RemoteAutomationClientSession class using the supplied parameters.

public:
 RemoteAutomationClientSession(Platform::String ^ name, Platform::Guid sessionId);
 RemoteAutomationClientSession(winrt::hstring const& name, winrt::guid const& sessionId);
public RemoteAutomationClientSession(string name, Guid sessionId);
function RemoteAutomationClientSession(name, sessionId)
Public Sub New (name As String, sessionId As Guid)

Parameters

name
String

Platform::String

winrt::hstring

The name of the remote machine. Currently not used.

sessionId
Guid

Platform::Guid

winrt::guid

The unique identifier of the remote machine.

Remarks

Used by remote application hosts to specify details of a remote connection and manage connections to the remote application.

See also

Applies to