Invokes a specified call using the application's queue for the events.

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

Syntax

Visual Basic (Declaration)
Protected 
Sub 
MakeCallback ( _
	
callback 
As 
AsyncCallback, _
	
result 
As 
IAsyncResult _
)
C#
protected 
void 
MakeCallback(
	
AsyncCallback 
callback,
	
IAsyncResult 
result
)
Visual C++
protected:
void 
MakeCallback(
	
AsyncCallback^ 
callback, 
	
IAsyncResult^ 
result
)
JavaScript
function 
makeCallback(
callback, 
result);

Parameters

callback
Type: AsyncCallback
The method to be called when an asynchronous operation is completed
result
Type: IAsyncResult
The reference to the pending asynchronous operation

Exceptions

Exception Condition
ArgumentNullException Thrown when the callbackor resultparameter is null.

See Also