RealTimeConnectionManager 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
RealTimeConnectionManager() |
Initializes the instance with default localhost name and no certificates. |
RealTimeConnectionManager(String) |
Initializes a new instance of this class from localHost. |
RealTimeConnectionManager(String, Byte[]) |
Initializes an instance of this class from the certificate information. |
RealTimeConnectionManager(String, String, Byte[]) |
Initializes an instance of this class from localHost and the certificate information. |
RealTimeConnectionManager()
Initializes the instance with default localhost name and no certificates.
protected:
RealTimeConnectionManager();
protected RealTimeConnectionManager ();
Protected Sub New ()
Exceptions
Thrown when the local host name cannot be retrieved for use in the contact header.
Applies to
RealTimeConnectionManager(String)
Initializes a new instance of this class from localHost.
protected:
RealTimeConnectionManager(System::String ^ localHost);
protected RealTimeConnectionManager (string localHost);
new Microsoft.Rtc.Signaling.RealTimeConnectionManager : string -> Microsoft.Rtc.Signaling.RealTimeConnectionManager
Protected Sub New (localHost As String)
Parameters
- localHost
- 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.
Exceptions
Thrown when an argument given is null.
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.
Applies to
RealTimeConnectionManager(String, Byte[])
Initializes an instance of this class from the certificate information.
protected:
RealTimeConnectionManager(System::String ^ certificateIssuerName, cli::array <System::Byte> ^ certificateSerialNumber);
protected RealTimeConnectionManager (string certificateIssuerName, byte[] certificateSerialNumber);
new Microsoft.Rtc.Signaling.RealTimeConnectionManager : string * byte[] -> Microsoft.Rtc.Signaling.RealTimeConnectionManager
Protected 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
Thrown when the local host name cannot be retrieved for use in the Contact header, or the certificate information given is not usable.
Thrown when an argument given is null.
Thrown when an argument given is empty.
Applies to
RealTimeConnectionManager(String, String, Byte[])
Initializes an instance of this class from localHost and the certificate information.
protected:
RealTimeConnectionManager(System::String ^ localHost, System::String ^ certificateIssuerName, cli::array <System::Byte> ^ certificateSerialNumber);
protected RealTimeConnectionManager (string localHost, string certificateIssuerName, byte[] certificateSerialNumber);
new Microsoft.Rtc.Signaling.RealTimeConnectionManager : string * string * byte[] -> Microsoft.Rtc.Signaling.RealTimeConnectionManager
Protected Sub New (localHost As String, certificateIssuerName As String, certificateSerialNumber As Byte())
Parameters
- localHost
- 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
- String
The issuer name of the certificate to be used.
- certificateSerialNumber
- Byte[]
The serial number of the certificate to be used.
Exceptions
Thrown when an argument given is null.
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.