Creates a new UserEndpointSettings object

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
ownerUri 
As 
String, _
	
serverName 
As 
String, _
	
serverPort 
As 
Integer _
)
C#
public 
UserEndpointSettings(
	
string 
ownerUri,
	
string 
serverName,
	
int 
serverPort
)
Visual C++
public:
UserEndpointSettings(
	
String^ 
ownerUri, 
	
String^ 
serverName, 
	
int 
serverPort
)
JavaScript

Microsoft.Rtc.Collaboration.UserEndpointSettings = 
function(
ownerUri, 
serverName, 
serverPort);

Parameters

ownerUri
Type: String
The URI of the user who owns this endpoint.
serverName
Type: String
The server where the endpoint is registered.
serverPort
Type: Int32
The port on the server to connect to.

Exceptions

Exception Condition
ArgumentNullException Thrown when arguments are null or empty.
ArgumentException Thrown when one or more arguments are not valid.

See Also