Completes the operation started by BeginGetOffer.

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

Syntax

Visual Basic (Declaration)
Protected 
MustOverride 
Function 
EndGetOffer ( _
	
result 
As 
IAsyncResult _
) 
As 
SdpOffer
C#
protected 
abstract 
SdpOffer 
EndGetOffer(
	
IAsyncResult 
result
)
Visual C++
protected:
virtual 
SdpOffer^ 
EndGetOffer(
	
IAsyncResult^ 
result
) 
abstract
JavaScript
function 
endGetOffer(
result);

Parameters

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

Return Value

The offer to be sent out. If a null offer is returned, the call will be terminated.

Exceptions

Exception Condition
Microsoft.Rtc.Collaboration . . :: . OfferAnswerException Thrown when the offer to send out cannot be created.

See Also