Waits for the pending send command to complete.

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

Syntax

Visual Basic (Declaration)
Protected 
Function 
EndSendCommand ( _
	
result 
As 
IAsyncResult _
) 
As 

ConferenceCommandResponse
C#
protected 

ConferenceCommandResponse 
EndSendCommand(
	
IAsyncResult 
result
)
Visual C++
protected:

ConferenceCommandResponse^ 
EndSendCommand(
	
IAsyncResult^ 
result
)
JavaScript
function 
endSendCommand(
result);

Parameters

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

Return Value

The results of the operation.

Remarks

The operation times out if no response was received within three minutes. If a pending response was received, the wait period is reset back to three minutes.

Exceptions

Exception Condition
Microsoft.Rtc.Signaling . . :: . OperationTimeoutException Thrown when the operation timed out waiting for a reply.
Microsoft.Rtc.Collaboration . . :: . ConferenceFailureException Thrown when the operation failed with a Centralized Conference Control Protocol (C3P) body in the response.
Microsoft.Rtc.Signaling . . :: . RealTimeException Thrown when the operation failed without a C3P body in the response.

See Also