Show / Hide Table of Contents

Interface IUnmuteParticipantOperationRequest

The interface IUnmuteParticipantOperationRequest.

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

Methods

View Source

CreateAsync(UnmuteParticipantOperation)

Creates the specified UnmuteParticipantOperation using PUT.

Declaration
Task<UnmuteParticipantOperation> CreateAsync(UnmuteParticipantOperation unmuteParticipantOperationToCreate)
Parameters
Type Name Description
UnmuteParticipantOperation unmuteParticipantOperationToCreate

The UnmuteParticipantOperation to create.

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

The created UnmuteParticipantOperation.

View Source

CreateAsync(UnmuteParticipantOperation, CancellationToken)

Creates the specified UnmuteParticipantOperation using PUT.

Declaration
Task<UnmuteParticipantOperation> CreateAsync(UnmuteParticipantOperation unmuteParticipantOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
UnmuteParticipantOperation unmuteParticipantOperationToCreate

The UnmuteParticipantOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created UnmuteParticipantOperation.

View Source

DeleteAsync()

Deletes the specified UnmuteParticipantOperation.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified UnmuteParticipantOperation.

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<UnmuteParticipantOperation, Object>>)

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
IUnmuteParticipantOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IUnmuteParticipantOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified UnmuteParticipantOperation.

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

The UnmuteParticipantOperation.

View Source

GetAsync(CancellationToken)

Gets the specified UnmuteParticipantOperation.

Declaration
Task<UnmuteParticipantOperation> 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<UnmuteParticipantOperation>

The UnmuteParticipantOperation.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
IUnmuteParticipantOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IUnmuteParticipantOperationRequest

The request object to send.

View Source

UpdateAsync(UnmuteParticipantOperation)

Updates the specified UnmuteParticipantOperation using PATCH.

Declaration
Task<UnmuteParticipantOperation> UpdateAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate)
Parameters
Type Name Description
UnmuteParticipantOperation unmuteParticipantOperationToUpdate

The UnmuteParticipantOperation to update.

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

The updated UnmuteParticipantOperation.

View Source

UpdateAsync(UnmuteParticipantOperation, CancellationToken)

Updates the specified UnmuteParticipantOperation using PATCH.

Declaration
Task<UnmuteParticipantOperation> UpdateAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
UnmuteParticipantOperation unmuteParticipantOperationToUpdate

The UnmuteParticipantOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated UnmuteParticipantOperation.

  • View Source
Back to top Generated by DocFX