RealTimeServerTlsConnectionManager Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RealTimeServerTlsConnectionManager(String, Byte[]) |
Initializes this instance with default localhost name and given certificate information. |
RealTimeServerTlsConnectionManager(String, String, Byte[]) |
Initializes this instance with given localhost and certificate information. |
RealTimeServerTlsConnectionManager(String, Byte[])
Initializes this instance with default localhost name and given certificate information.
public:
RealTimeServerTlsConnectionManager(System::String ^ certificateIssuerName, cli::array <System::Byte> ^ certificateSerialNumber);
public RealTimeServerTlsConnectionManager (string certificateIssuerName, byte[] certificateSerialNumber);
new Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager : string * byte[] -> Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager
Public Sub New (certificateIssuerName As String, certificateSerialNumber As Byte())
Parameters
- certificateIssuerName
- String
The issuer name of the certificate to be used.
- certificateSerialNumber
- Byte[]
The serial number of the certificate to be used.
Exceptions
The local host name could not be retrieved for use in the contact header.
Thrown when a given argument is null.
Thrown when a given argument is empty.
Applies to
RealTimeServerTlsConnectionManager(String, String, Byte[])
Initializes this instance with given localhost and certificate information.
public:
RealTimeServerTlsConnectionManager(System::String ^ localHost, System::String ^ certificateIssuerName, cli::array <System::Byte> ^ certificateSerialNumber);
public RealTimeServerTlsConnectionManager (string localHost, string certificateIssuerName, byte[] certificateSerialNumber);
new Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager : string * string * byte[] -> Microsoft.Rtc.Signaling.RealTimeServerTlsConnectionManager
Public Sub New (localHost As String, certificateIssuerName As String, certificateSerialNumber As Byte())
Parameters
- localHost
- String
The localHost to be used in the contact header.
- certificateIssuerName
- String
The issuer name of the certificate to be used.
- certificateSerialNumber
- Byte[]
The serial number of the certificate to be used.
Exceptions
Thrown when a given argument is null.
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.