Raised when the listening is aborted either due to application calling StopListing or when an internal failure occurs such as failure to accept an incoming connection. The exception in the event argument can be null if the application called StopListening.

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

Syntax

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

See Also