Waits for the pending renegotiate operation to complete.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
EndRenegotiateDescription ( _
	
result 
As 
IAsyncResult _
) 
As 

SipResponseData
C#
public 

SipResponseData 
EndRenegotiateDescription(
	
IAsyncResult 
result
)
Visual C++
public:

SipResponseData^ 
EndRenegotiateDescription(
	
IAsyncResult^ 
result
)
JavaScript
function 
endRenegotiateDescription(
result);

Parameters

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

Return Value

Returns the SIP response data associated with the operation.

Exceptions

Exception Condition
InvalidOperationException Thrown when this method is invoked multiple times using the same result.
ArgumentNullException Thrown when the resultparameter is null.
ArgumentException Thrown when the resultparameter is invalid.
Microsoft.Rtc.Signaling . . :: . OperationTimeoutException Thrown when this operation timed out.
Microsoft.Rtc.Signaling . . :: . RealTimeException Thrown when any of the sub operations of this operation failed due to SIP related errors like connection failure, Authentication failure.
Microsoft.Rtc.Signaling . . :: . FailureResponseException Thrown when the remote side returns a failure response for this operation.
Microsoft.Rtc.Signaling . . :: . OperationFailureException Thrown when any of the sub operations of this operation failed due to invalid object state.

See Also