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, _
	
disallowParameters 
As 
Boolean _
)
C#
protected 
RealTimeEndpoint(
	
string 
uri,
	
string 
epid,
	
bool 
disallowParameters
)
Visual C++
protected:
RealTimeEndpoint(
	
String^ 
uri, 
	
String^ 
epid, 
	
bool 
disallowParameters
)
JavaScript

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

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.
disallowParameters
Type: Boolean
True to check and throw if parameters exist.

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