CallConnection.MuteParticipantAsync 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
MuteParticipantAsync(MuteParticipantOptions, CancellationToken) |
Mute participants on the call. |
MuteParticipantAsync(CommunicationIdentifier, CancellationToken) |
Mute participants on the call. Only Acs Users are currently supported. |
MuteParticipantAsync(MuteParticipantOptions, CancellationToken)
- Source:
- CallConnection.cs
- Source:
- CallConnection.cs
Mute participants on the call.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>> MuteParticipantAsync (Azure.Communication.CallAutomation.MuteParticipantOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member MuteParticipantAsync : Azure.Communication.CallAutomation.MuteParticipantOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>>
override this.MuteParticipantAsync : Azure.Communication.CallAutomation.MuteParticipantOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>>
Public Overridable Function MuteParticipantAsync (options As MuteParticipantOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of MuteParticipantResult))
Parameters
- options
- MuteParticipantOptions
Options for the MuteParticipant operation.
- cancellationToken
- CancellationToken
The cancellation token.
Returns
Exceptions
options
is null.
options
OperationContext is too long.
The server returned an error. See Message for details returned from the server.
Applies to
MuteParticipantAsync(CommunicationIdentifier, CancellationToken)
- Source:
- CallConnection.cs
- Source:
- CallConnection.cs
Mute participants on the call. Only Acs Users are currently supported.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>> MuteParticipantAsync (Azure.Communication.CommunicationIdentifier targetParticipant, System.Threading.CancellationToken cancellationToken = default);
abstract member MuteParticipantAsync : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>>
override this.MuteParticipantAsync : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.MuteParticipantResult>>
Public Overridable Function MuteParticipantAsync (targetParticipant As CommunicationIdentifier, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of MuteParticipantResult))
Parameters
- targetParticipant
- CommunicationIdentifier
Participants to mute.
- cancellationToken
- CancellationToken
The cancellation token.
Returns
Exceptions
targetParticipant
is null.
The server returned an error. See Message for details returned from the server.
Applies to
Azure SDK for .NET