Initializes this instance with given localhost and certificate information.

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

Syntax

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

Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager =

function(
localHost, 
certificateIssuerName, 
certificateSerialNumber);

Parameters

localHost
Type: String
The localHost to be used in the contact header.
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 a given argument is null.
ArgumentException Thrown when a given argument is empty, or the localHost parameter cannot be used as a host URI, or the certificate information given is not usable.

See Also