Completes the asynchronous operation started by BeginTerminateCall.

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

Syntax

Visual Basic (Declaration)
Protected 
Sub 
EndTerminateCall ( _
	
result 
As 
IAsyncResult _
)
C#
protected 
void 
EndTerminateCall(
	
IAsyncResult 
result
)
Visual C++
protected:
void 
EndTerminateCall(
	
IAsyncResult^ 
result
)
JavaScript
function 
endTerminateCall(
result);

Parameters

result
Type: IAsyncResult
The reference to the pending asynchronous operation.

Exceptions

Exception Condition
InvalidOperationException Thrown when this method is invoked multiple times using the same instance of asyncResult.
ArgumentNullException Thrown when the resultparameter is null.
ArgumentException Thrown when the resultparameter is invalid.

See Also