ConferenceInvitation.BeginDeliver Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BeginDeliver(String, AsyncCallback, Object) |
Begins an asynchronous operation to deliver the conference invitation. |
BeginDeliver(String, ConferenceInvitationDeliverOptions, AsyncCallback, Object) |
Begins an asynchronous operation to deliver the conference invitation. |
BeginDeliver(String, AsyncCallback, Object)
Begins an asynchronous operation to deliver the conference invitation.
public:
IAsyncResult ^ BeginDeliver(System::String ^ destinationUri, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDeliver (string destinationUri, AsyncCallback userCallback, object state);
member this.BeginDeliver : string * AsyncCallback * obj -> IAsyncResult
Public Function BeginDeliver (destinationUri As String, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- destinationUri
- String
The URI to which the invitation to the conference will be sent.
- userCallback
- AsyncCallback
The method to be called when the asynchronous operation is completed.
- state
- Object
A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.
Returns
An IAsyncResult that references the asynchronous operation.
Exceptions
Thrown when the destinationUri
parameter contains invalid URI.
Thrown when the conversation is not in a valid state to perform this operation.
Applies to
BeginDeliver(String, ConferenceInvitationDeliverOptions, AsyncCallback, Object)
Begins an asynchronous operation to deliver the conference invitation.
public:
IAsyncResult ^ BeginDeliver(System::String ^ destinationUri, Microsoft::Rtc::Collaboration::ConferenceInvitationDeliverOptions ^ options, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDeliver (string destinationUri, Microsoft.Rtc.Collaboration.ConferenceInvitationDeliverOptions options, AsyncCallback userCallback, object state);
member this.BeginDeliver : string * Microsoft.Rtc.Collaboration.ConferenceInvitationDeliverOptions * AsyncCallback * obj -> IAsyncResult
Public Function BeginDeliver (destinationUri As String, options As ConferenceInvitationDeliverOptions, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- destinationUri
- String
The URI to which the invitation to the conference will be sent.
Optional parameters to deliver the invitation.
- userCallback
- AsyncCallback
The method to be called when the asynchronous operation is completed.
- state
- Object
A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.
Returns
An IAsyncResult that references the asynchronous operation.
Exceptions
Thrown when the destinationUri
parameter contains invalid URI or when the options
parameter contains invalid or restricted signaling headers.
Thrown when the conversation or conference is not in a valid state to perform this operation.