This method will delay the authorization for the connection. No messages will be processed until the connection is authorized.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
DelayAuthorization
C#
public 
void 
DelayAuthorization()
Visual C++
public:
void 
DelayAuthorization()
JavaScript
function 
delayAuthorization();

Remarks

By calling this method, applications can release the current thread and do an aynchronous authorization (by looking up in a database for example). The application must ensure that it eventually calls Allow or Deny for this connection. Otherwise, the connection will remain in the pending state.

See Also