SignalingSession.BeginSendProvisionalResponse 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
| BeginSendProvisionalResponse(Int32, SendProvisionalResponseOptions, AsyncCallback, Object) |
Sends a provisional response. |
| BeginSendProvisionalResponse(Int32, AsyncCallback, Object) |
Sends a provisional response. |
BeginSendProvisionalResponse(Int32, SendProvisionalResponseOptions, AsyncCallback, Object)
Sends a provisional response.
public:
IAsyncResult ^ BeginSendProvisionalResponse(int responseCode, Microsoft::Rtc::Signaling::SendProvisionalResponseOptions ^ options, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginSendProvisionalResponse (int responseCode, Microsoft.Rtc.Signaling.SendProvisionalResponseOptions options, AsyncCallback userCallback, object state);
member this.BeginSendProvisionalResponse : int * Microsoft.Rtc.Signaling.SendProvisionalResponseOptions * AsyncCallback * obj -> IAsyncResult
Public Function BeginSendProvisionalResponse (responseCode As Integer, options As SendProvisionalResponseOptions, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- responseCode
- Int32
The redirection response code to use.
- options
- SendProvisionalResponseOptions
Optional parameters to specify how the provisional response should 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 state of the session does not allow the operation or the dialog context has been used in a previous transaction.
Applies to
BeginSendProvisionalResponse(Int32, AsyncCallback, Object)
Sends a provisional response.
public:
IAsyncResult ^ BeginSendProvisionalResponse(int responseCode, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginSendProvisionalResponse (int responseCode, AsyncCallback userCallback, object state);
member this.BeginSendProvisionalResponse : int * AsyncCallback * obj -> IAsyncResult
Public Function BeginSendProvisionalResponse (responseCode As Integer, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- responseCode
- Int32
The redirection response code to use.
- 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 state of the session does not allow the operation.