Show / Hide Table of Contents

Interface IConfigureMixerOperationRequest

The interface IConfigureMixerOperationRequest.

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

Methods

View Source

CreateAsync(ConfigureMixerOperation)

Creates the specified ConfigureMixerOperation using PUT.

Declaration
Task<ConfigureMixerOperation> CreateAsync(ConfigureMixerOperation configureMixerOperationToCreate)
Parameters
Type Name Description
ConfigureMixerOperation configureMixerOperationToCreate

The ConfigureMixerOperation to create.

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

The created ConfigureMixerOperation.

View Source

CreateAsync(ConfigureMixerOperation, CancellationToken)

Creates the specified ConfigureMixerOperation using PUT.

Declaration
Task<ConfigureMixerOperation> CreateAsync(ConfigureMixerOperation configureMixerOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
ConfigureMixerOperation configureMixerOperationToCreate

The ConfigureMixerOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created ConfigureMixerOperation.

View Source

DeleteAsync()

Deletes the specified ConfigureMixerOperation.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified ConfigureMixerOperation.

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

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
IConfigureMixerOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IConfigureMixerOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified ConfigureMixerOperation.

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

The ConfigureMixerOperation.

View Source

GetAsync(CancellationToken)

Gets the specified ConfigureMixerOperation.

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

The ConfigureMixerOperation.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
IConfigureMixerOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IConfigureMixerOperationRequest

The request object to send.

View Source

UpdateAsync(ConfigureMixerOperation)

Updates the specified ConfigureMixerOperation using PATCH.

Declaration
Task<ConfigureMixerOperation> UpdateAsync(ConfigureMixerOperation configureMixerOperationToUpdate)
Parameters
Type Name Description
ConfigureMixerOperation configureMixerOperationToUpdate

The ConfigureMixerOperation to update.

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

The updated ConfigureMixerOperation.

View Source

UpdateAsync(ConfigureMixerOperation, CancellationToken)

Updates the specified ConfigureMixerOperation using PATCH.

Declaration
Task<ConfigureMixerOperation> UpdateAsync(ConfigureMixerOperation configureMixerOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
ConfigureMixerOperation configureMixerOperationToUpdate

The ConfigureMixerOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated ConfigureMixerOperation.

  • View Source
Back to top Generated by DocFX