Initializes this instance with default localhost name and given certificate information.

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

Syntax

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

Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager =

function(
certificateIssuerName, 
certificateSerialNumber);

Parameters

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
Microsoft.Rtc.Signaling . . :: . RealTimeException The local host name could not be retrieved for use in the contact header.
ArgumentNullException Thrown when a given argument is null.
ArgumentException Thrown when a given argument is empty.

See Also