Interface IMuteParticipantOperationRequest
The interface IMuteParticipantOperationRequest.
Inherited Members
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IMuteParticipantOperationRequest : IBaseRequest
Methods
View SourceCreateAsync(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. |
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. |
DeleteAsync()
Deletes the specified MuteParticipantOperation.
Declaration
Task DeleteAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | The task to await. |
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. |
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. |
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. |
GetAsync()
Gets the specified MuteParticipantOperation.
Declaration
Task<MuteParticipantOperation> GetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<MuteParticipantOperation> | The MuteParticipantOperation. |
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. |
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. |
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. |
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. |
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. |