Show / Hide Table of Contents

Interface IMuteParticipantOperationRequest

The interface IMuteParticipantOperationRequest.

Inherited Members
IBaseRequest.Client
IBaseRequest.RequestUrl
IBaseRequest.Headers
IBaseRequest.QueryOptions
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IMuteParticipantOperationRequest : IBaseRequest

Methods

View Source

CreateAsync(MuteParticipantOperation)

Creates the specified MuteParticipantOperation using PUT.

Declaration
Task<MuteParticipantOperation> CreateAsync(MuteParticipantOperation muteParticipantOperationToCreate)
Parameters
Type Name Description
MuteParticipantOperation muteParticipantOperationToCreate

The MuteParticipantOperation to create.

Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The created MuteParticipantOperation.

View Source

CreateAsync(MuteParticipantOperation, CancellationToken)

Creates the specified MuteParticipantOperation using PUT.

Declaration
Task<MuteParticipantOperation> CreateAsync(MuteParticipantOperation muteParticipantOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
MuteParticipantOperation muteParticipantOperationToCreate

The MuteParticipantOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The created MuteParticipantOperation.

View Source

DeleteAsync()

Deletes the specified MuteParticipantOperation.

Declaration
Task DeleteAsync()
Returns
Type Description
System.Threading.Tasks.Task

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified MuteParticipantOperation.

Declaration
Task DeleteAsync(CancellationToken cancellationToken)
Parameters
Type Name Description
System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task

The task to await.

View Source

Expand(Expression<Func<MuteParticipantOperation, Object>>)

Adds the specified expand value to the request.

Declaration
IMuteParticipantOperationRequest Expand(Expression<Func<MuteParticipantOperation, object>> expandExpression)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<MuteParticipantOperation, System.Object>> expandExpression

The expression from which to calculate the expand value.

Returns
Type Description
IMuteParticipantOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

Declaration
IMuteParticipantOperationRequest Expand(string value)
Parameters
Type Name Description
System.String value

The expand value.

Returns
Type Description
IMuteParticipantOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified MuteParticipantOperation.

Declaration
Task<MuteParticipantOperation> GetAsync()
Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The MuteParticipantOperation.

View Source

GetAsync(CancellationToken)

Gets the specified MuteParticipantOperation.

Declaration
Task<MuteParticipantOperation> GetAsync(CancellationToken cancellationToken)
Parameters
Type Name Description
System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The MuteParticipantOperation.

View Source

Select(Expression<Func<MuteParticipantOperation, Object>>)

Adds the specified select value to the request.

Declaration
IMuteParticipantOperationRequest Select(Expression<Func<MuteParticipantOperation, object>> selectExpression)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<MuteParticipantOperation, System.Object>> selectExpression

The expression from which to calculate the select value.

Returns
Type Description
IMuteParticipantOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

Declaration
IMuteParticipantOperationRequest Select(string value)
Parameters
Type Name Description
System.String value

The select value.

Returns
Type Description
IMuteParticipantOperationRequest

The request object to send.

View Source

UpdateAsync(MuteParticipantOperation)

Updates the specified MuteParticipantOperation using PATCH.

Declaration
Task<MuteParticipantOperation> UpdateAsync(MuteParticipantOperation muteParticipantOperationToUpdate)
Parameters
Type Name Description
MuteParticipantOperation muteParticipantOperationToUpdate

The MuteParticipantOperation to update.

Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The updated MuteParticipantOperation.

View Source

UpdateAsync(MuteParticipantOperation, CancellationToken)

Updates the specified MuteParticipantOperation using PATCH.

Declaration
Task<MuteParticipantOperation> UpdateAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
MuteParticipantOperation muteParticipantOperationToUpdate

The MuteParticipantOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<MuteParticipantOperation>

The updated MuteParticipantOperation.

  • View Source
Back to top Generated by DocFX