Edit

Share via


ApplicationEndpointSettings Constructors

Definition

Overloads

ApplicationEndpointSettings(String)

Creates a new instance of the ApplicationEndpointSettings class.

ApplicationEndpointSettings(String, ConnectionContext)

Creates a new instance of the ApplicationEndpointSettings class.

ApplicationEndpointSettings(String, String, Int32)

Creates a new instance of the ApplicationEndpointSettings class.

ApplicationEndpointSettings(String)

Creates a new instance of the ApplicationEndpointSettings class.

public:
 ApplicationEndpointSettings(System::String ^ ownerUri);
public ApplicationEndpointSettings (string ownerUri);
new Microsoft.Rtc.Collaboration.ApplicationEndpointSettings : string -> Microsoft.Rtc.Collaboration.ApplicationEndpointSettings
Public Sub New (ownerUri As String)

Parameters

ownerUri
String

The URI of the owner of the endpoint.

Exceptions

Thrown when one or more arguments are null or empty.

Remarks

The endpoint type is set to "Application" and EndpointSubtype to "Attendant" by default.

Applies to

ApplicationEndpointSettings(String, ConnectionContext)

Creates a new instance of the ApplicationEndpointSettings class.

public:
 ApplicationEndpointSettings(System::String ^ ownerUri, Microsoft::Rtc::Signaling::ConnectionContext ^ proxyConnectionContext);
public ApplicationEndpointSettings (string ownerUri, Microsoft.Rtc.Signaling.ConnectionContext proxyConnectionContext);
new Microsoft.Rtc.Collaboration.ApplicationEndpointSettings : string * Microsoft.Rtc.Signaling.ConnectionContext -> Microsoft.Rtc.Collaboration.ApplicationEndpointSettings
Public Sub New (ownerUri As String, proxyConnectionContext As ConnectionContext)

Parameters

ownerUri
String

The URI of the owner of the endpoint.

proxyConnectionContext
ConnectionContext

The proxy connection information to use as the first hop instead of a direct connection to the other endpoint.

Exceptions

Thrown if one or more arguments are null or empty.

Thrown if one or more arguments are not valid.

Applies to

ApplicationEndpointSettings(String, String, Int32)

Creates a new instance of the ApplicationEndpointSettings class.

public:
 ApplicationEndpointSettings(System::String ^ ownerUri, System::String ^ proxyHost, int proxyPort);
public ApplicationEndpointSettings (string ownerUri, string proxyHost, int proxyPort);
new Microsoft.Rtc.Collaboration.ApplicationEndpointSettings : string * string * int -> Microsoft.Rtc.Collaboration.ApplicationEndpointSettings
Public Sub New (ownerUri As String, proxyHost As String, proxyPort As Integer)

Parameters

ownerUri
String

The URI of the owner of the endpoint.

proxyHost
String

The proxy host to use as the first hop instead of a direct connection to the other endpoint.

proxyPort
Int32

The port to use for connecting to a proxy.

Exceptions

Thrown if one or more arguments are null or empty.

Thrown if one or more arguments are not valid.

Applies to