This method is used to determine 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

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

ProvisioningData
C#
public 

ProvisioningData 
EndGetProvisioningData(
	
IAsyncResult 
result
)
Visual C++
public:

ProvisioningData^ 
EndGetProvisioningData(
	
IAsyncResult^ 
result
)
JavaScript
function 
endGetProvisioningData(
result);

Parameters

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

Return Value

The provisioning data corresponding to the URI of the endpoint.

Exceptions

Exception Condition
ArgumentNullException Thrown when the resultparameter is null.
ArgumentException Thrown when the resultparameter is invalid.
Microsoft.Rtc.Signaling . . :: . PublishSubscribeException Thrown when a bad notification message is encountered.
Microsoft.Rtc.Signaling . . :: . RealTimeException Thrown when this operation failed for other reasons.

See Also