Edit

Share via


AudioVideoMcuSession.BeginUnmute Method

Definition

Overloads

BeginUnmute(ParticipantEndpoint, AsyncCallback, Object)

Enables the audio coming from the supplied participant endpoint to be sent to the conference.

BeginUnmute(ParticipantEndpoint, UnmuteOptions, AsyncCallback, Object)

Enables the audio coming from the supplied participant endpoint to be sent to the conference.

BeginUnmute(ParticipantEndpoint, AsyncCallback, Object)

Enables the audio coming from the supplied participant endpoint to be sent to the conference.

public:
 IAsyncResult ^ BeginUnmute(Microsoft::Rtc::Collaboration::ParticipantEndpoint ^ endpoint, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginUnmute (Microsoft.Rtc.Collaboration.ParticipantEndpoint endpoint, AsyncCallback userCallback, object state);
member this.BeginUnmute : Microsoft.Rtc.Collaboration.ParticipantEndpoint * AsyncCallback * obj -> IAsyncResult
Public Function BeginUnmute (endpoint As ParticipantEndpoint, userCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

endpoint
ParticipantEndpoint

The endpoint of which audio should be affected.

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. Also thrown if the supplied endpoint is not in the MCU or has no audio to mute.

Thrown when the supplied endpoint is null.

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.

Applies to

BeginUnmute(ParticipantEndpoint, UnmuteOptions, AsyncCallback, Object)

Enables the audio coming from the supplied participant endpoint to be sent to the conference.

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

Parameters

endpoint
ParticipantEndpoint

The endpoint of which audio should be affected.

options
UnmuteOptions

Options to customize the un-mute operation. Could be set to 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. Also thrown if the supplied endpoint is not in the MCU or has no audio to mute.

Thrown when the supplied endpoint is null.

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.

Applies to