Initializes an instance of this class from localHost and the certificate information.

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

Syntax

Visual Basic (Declaration)
Protected 
Sub 
New ( _
	
localHost 
As 
String, _
	
certificateIssuerName 
As 
String, _
	
certificateSerialNumber 
As 
Byte() _
)
C#
protected 
RealTimeConnectionManager(
	
string 
localHost,
	
string 
certificateIssuerName,
	
byte[] 
certificateSerialNumber
)
Visual C++
protected:
RealTimeConnectionManager(
	
String^ 
localHost, 
	
String^ 
certificateIssuerName, 
	
array<
unsigned char>^ 
certificateSerialNumber
)
JavaScript

Microsoft.Rtc.Signaling.RealTimeConnectionManager = 
function(
localHost, 
certificateIssuerName, 
certificateSerialNumber);

Parameters

localHost
Type: String
Specifies the local host to be used in contact header. localHost could be the computer name, the IP address, or the computer's fully qualified domain name.
certificateIssuerName
Type: String
The issuer name of the certificate to be used.
certificateSerialNumber
Type: array< Byte > [] () []
The serial number of the certificate to be used.

Exceptions

Exception Condition
ArgumentNullException Thrown when an argument given is null.
ArgumentException Thrown when an argument given is empty, or the localHost parameter cannot be used as a host URI, or the certificate information given is not usable.

See Also