Share via


McuSession.BeginSendCommand Method (, AsyncCallback, Object)

Send a request to the MCU via the focus.

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

Syntax

'Declaration
Protected Function BeginSendCommand ( _
    command As ConferenceCommand, _
    userCallback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Usage
Dim command As ConferenceCommand
Dim userCallback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = Me.BeginSendCommand(command, _
    userCallback, state)
protected IAsyncResult BeginSendCommand(
    ConferenceCommand command,
    AsyncCallback userCallback,
    Object state
)

Parameters

  • command
    Type: ConferenceCommand
    The conference command to send to the MCU via the focus.
  • userCallback
    Type: System.AsyncCallback
    The method to be called when the asynchronous operation is completed.
  • state
    Type: System.Object
    A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.

Return Value

Type: System.IAsyncResult
An IAsyncResult that references the asynchronous operation.

Exceptions

Exception Condition
InvalidOperationException

Thrown when the parent ConferenceSession is not in a valid state or the conference does not support the corresponding MCU type.

ArgumentNullException

Thrown when the command is null.

RealTimeInvalidOperationException

Thrown when the parent ConferenceSession is reconnecting (FailureReason will be set to InvalidOperationReason.RetryableOperation).

Remarks

Note McuSession does not manage any direct sessions with the MCU. The command is actually proxied to the ConferenceSession which manages the signaling and subscription sessions with the focus. The focus proxies the command to the MCU and proxies the responses back to the application.

See Also

Reference

McuSession Class

McuSession Members

BeginSendCommand Overload

Microsoft.Rtc.Collaboration Namespace