Edit

Share via


AudioVideoMcuSession.BeginDisableMuteAllMode Method

Definition

Overloads

BeginDisableMuteAllMode(AsyncCallback, Object)

Disables mute all mode on AudioVideoMcuSession if it was already enabled.

BeginDisableMuteAllMode(DisableMuteAllModeOptions, AsyncCallback, Object)

Disables mute all on AudioVideoMcuSession if it was already enabled based on given options.

BeginDisableMuteAllMode(AsyncCallback, Object)

Disables mute all mode on AudioVideoMcuSession if it was already enabled.

public:
 IAsyncResult ^ BeginDisableMuteAllMode(AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDisableMuteAllMode (AsyncCallback userCallback, object state);
member this.BeginDisableMuteAllMode : AsyncCallback * obj -> IAsyncResult
Public Function BeginDisableMuteAllMode (userCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

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 parent ConferenceSession is not in a valid state or the conference does not support the corresponding MCU type.

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

Remarks

This operation is allowed by the server for conference leaders only.

If mute all mode was not enabled previously then this operation completes without any changes to the existing mute all mode state on AudioVideoMcuSession.

Applies to

BeginDisableMuteAllMode(DisableMuteAllModeOptions, AsyncCallback, Object)

Disables mute all on AudioVideoMcuSession if it was already enabled based on given options.

public:
 IAsyncResult ^ BeginDisableMuteAllMode(Microsoft::Rtc::Collaboration::AudioVideo::DisableMuteAllModeOptions ^ options, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDisableMuteAllMode (Microsoft.Rtc.Collaboration.AudioVideo.DisableMuteAllModeOptions options, AsyncCallback userCallback, object state);
member this.BeginDisableMuteAllMode : Microsoft.Rtc.Collaboration.AudioVideo.DisableMuteAllModeOptions * AsyncCallback * obj -> IAsyncResult
Public Function BeginDisableMuteAllMode (options As DisableMuteAllModeOptions, userCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

options
DisableMuteAllModeOptions

Optional parameters to disable mute all mode. Can be null.

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 parent ConferenceSession is not in a valid state or the conference does not support the corresponding MCU type.

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

Remarks

This operation is allowed by the server for conference leaders only.

If mute all mode was not enabled previously then this operation completes without any changes to the existing mute all state on AudioVideoMcuSession.

Applies to