Raised when the TLS negotiation fails for an incoming connection. The failure may be due to an invalid local certificate, or remote not trusting the local certificate, or some other reason.

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

Syntax

Visual Basic (Declaration)
Public Event 
IncomingTlsNegotiationFailed 
As 
EventHandler(
Of 
ErrorEventArgs)
C#
public event 
EventHandler<
ErrorEventArgs> 
IncomingTlsNegotiationFailed
Visual C++
public:
 
event 
EventHandler<
ErrorEventArgs^>^ 
IncomingTlsNegotiationFailed {
	
void 
add (
EventHandler<
ErrorEventArgs^>^ 
value);
	
void 
remove (
EventHandler<
ErrorEventArgs^>^ 
value);
}
JavaScript
function add_
incomingTlsNegotiationFailed(
value);
function remove_
incomingTlsNegotiationFailed(
value);

See Also