Constructor when URI is supplied.

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

Syntax

Visual Basic (Declaration)
Protected 
Sub 
New ( _
	
uri 
As 
String, _
	
epid 
As 
String _
)
C#
protected 
RealTimeEndpoint(
	
string 
uri,
	
string 
epid
)
Visual C++
protected:
RealTimeEndpoint(
	
String^ 
uri, 
	
String^ 
epid
)
JavaScript

Microsoft.Rtc.Signaling.RealTimeEndpoint = 
function(
uri, 
epid);

Parameters

uri
Type: String
The URI of the owning identity of this endpoint.
epid
Type: String
The epid to use. Can be null or empty in which case it is auto generated.

Exceptions

Exception Condition
ArgumentException Thrown when an argument is invalid or unable to generate an EPID for this endpoint.
ArgumentOutOfRangeException Thrown when epid string length is too long.

See Also