Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the corresponding operation completed successfully. This method will wait if the operation has not yet completed.
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Function EndDeliver ( _
result As IAsyncResult _
) As ConferenceInvitationResponse
'Usage
Dim instance As ConferenceInvitation
Dim result As IAsyncResult
Dim returnValue As ConferenceInvitationResponse
returnValue = instance.EndDeliver(result)
public ConferenceInvitationResponse EndDeliver(
IAsyncResult result
)
Parameters
- result
Type: System.IAsyncResult
The reference to the pending asynchronous operation.
Return Value
Type: Microsoft.Rtc.Collaboration.ConferenceInvitationResponse
Exceptions
| Exception | Condition |
|---|---|
| InvalidOperationException | Thrown when this method is invoked multiple times using the same asyncResult. |
| ArgumentNullException | Thrown when the result parameter is null. |
| ArgumentException | Thrown when the result parameter is invalid. |
| FailureResponseException | Thrown when this invitation was not accepted. |
| OperationTimeoutException | Thrown when this operation timed out. |
| OperationFailureException | Thrown when this operation failed with a known reason. |
| RealTimeException | Thrown when this operation failed for other reasons. |