RealTimeConnectionManager.IncomingConnectionConnected Method
Handles incoming connection connected event. This class should not get this event since it is not listening but a subclass can.
Namespace: Microsoft.Rtc.Signaling
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Protected Overridable Sub IncomingConnectionConnected ( _
connection As SipConnection, _
matchedDomainName As String, _
remoteCertificate As X509Certificate2 _
)
'Usage
Dim connection As SipConnection
Dim matchedDomainName As String
Dim remoteCertificate As X509Certificate2
Me.IncomingConnectionConnected(connection, _
matchedDomainName, remoteCertificate)
protected virtual void IncomingConnectionConnected(
SipConnection connection,
string matchedDomainName,
X509Certificate2 remoteCertificate
)
Parameters
- connection
Type: SipConnection
The SIP connection object.
- matchedDomainName
Type: System.String
The domain that was matched from the allowed domains list
- remoteCertificate
Type: System.Security.Cryptography.X509Certificates.X509Certificate2
The remote certificate
See Also
Reference
RealTimeConnectionManager Class