Gets whether the supplied passcode is valid for the conference.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
BeginVerifyPasscode ( _
	
conferenceAddress 
As 

RealTimeAddress, _
	
passcode 
As 
String, _
	
userCallback 
As 
AsyncCallback, _
	
state 
As 
Object _
) 
As 
IAsyncResult
C#
public 
IAsyncResult 
BeginVerifyPasscode(
	

RealTimeAddress 
conferenceAddress,
	
string 
passcode,
	
AsyncCallback 
userCallback,
	
Object 
state
)
Visual C++
public:
IAsyncResult^ 
BeginVerifyPasscode(
	

RealTimeAddress^ 
conferenceAddress, 
	
String^ 
passcode, 
	
AsyncCallback^ 
userCallback, 
	
Object^ 
state
)
JavaScript
function 
beginVerifyPasscode(
conferenceAddress, 
passcode, 
userCallback, 
state);

Parameters

conferenceAddress
Type: Microsoft.Rtc.Signaling . . :: . RealTimeAddress
The conference address.
passcode
Type: String
The passcode to verify.
userCallback
Type: AsyncCallback
The method to be called when the asynchronous operation is completed.
state
Type: Object
A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.

Return Value

An IAsyncResult that references the asynchronous operation.

Remarks

This method requires an endpoint that supports privileged operations.

Exceptions

Exception Condition
InvalidOperationException Thrown when the method failed to issue the request or when the endpoint does not support privileged operations.
ArgumentNullException Thrown when the supplied conference address or passcode were null.
ArgumentException Thrown when the supplied passcode was empty.

See Also