Raised when a connection is established and authorization by the application is needed.

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

Syntax

Visual Basic (Declaration)
Public Event 
ConnectionAuthorizationRequested 
As 
EventHandler(
Of 

ConnectionAuthorizationRequestedEventArgs)
C#
public event 
EventHandler<

ConnectionAuthorizationRequestedEventArgs> 
ConnectionAuthorizationRequested
Visual C++
public:
 
event 
EventHandler<

ConnectionAuthorizationRequestedEventArgs^>^ 
ConnectionAuthorizationRequested {
	
void 
add (
EventHandler<

ConnectionAuthorizationRequestedEventArgs^>^ 
value);
	
void 
remove (
EventHandler<

ConnectionAuthorizationRequestedEventArgs^>^ 
value);
}
JavaScript
function add_
connectionAuthorizationRequested(
value);
function remove_
connectionAuthorizationRequested(
value);

Remarks

If this event is not registered for, the platform will apply default connection authorization logic. For TLS connections, the trusted domains list is used for default connection authorization.

Until connections are authorized, application data will not be sent or received on this connection.

See Also