Show / Hide Table of Contents

Interface IAudioRoutingGroupRequest

The interface IAudioRoutingGroupRequest.

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

Methods

View Source

CreateAsync(AudioRoutingGroup)

Creates the specified AudioRoutingGroup using PUT.

Declaration
Task<AudioRoutingGroup> CreateAsync(AudioRoutingGroup audioRoutingGroupToCreate)
Parameters
Type Name Description
AudioRoutingGroup audioRoutingGroupToCreate

The AudioRoutingGroup to create.

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

The created AudioRoutingGroup.

View Source

CreateAsync(AudioRoutingGroup, CancellationToken)

Creates the specified AudioRoutingGroup using PUT.

Declaration
Task<AudioRoutingGroup> CreateAsync(AudioRoutingGroup audioRoutingGroupToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
AudioRoutingGroup audioRoutingGroupToCreate

The AudioRoutingGroup to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created AudioRoutingGroup.

View Source

DeleteAsync()

Deletes the specified AudioRoutingGroup.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified AudioRoutingGroup.

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

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
IAudioRoutingGroupRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IAudioRoutingGroupRequest

The request object to send.

View Source

GetAsync()

Gets the specified AudioRoutingGroup.

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

The AudioRoutingGroup.

View Source

GetAsync(CancellationToken)

Gets the specified AudioRoutingGroup.

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

The AudioRoutingGroup.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
IAudioRoutingGroupRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IAudioRoutingGroupRequest

The request object to send.

View Source

UpdateAsync(AudioRoutingGroup)

Updates the specified AudioRoutingGroup using PATCH.

Declaration
Task<AudioRoutingGroup> UpdateAsync(AudioRoutingGroup audioRoutingGroupToUpdate)
Parameters
Type Name Description
AudioRoutingGroup audioRoutingGroupToUpdate

The AudioRoutingGroup to update.

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

The updated AudioRoutingGroup.

View Source

UpdateAsync(AudioRoutingGroup, CancellationToken)

Updates the specified AudioRoutingGroup using PATCH.

Declaration
Task<AudioRoutingGroup> UpdateAsync(AudioRoutingGroup audioRoutingGroupToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
AudioRoutingGroup audioRoutingGroupToUpdate

The AudioRoutingGroup to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated AudioRoutingGroup.

  • View Source
Back to top Generated by DocFX