Show / Hide Table of Contents

Interface ICallAudioRoutingGroupsCollectionRequest

The interface ICallAudioRoutingGroupsCollectionRequest.

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

Methods

View Source

AddAsync(AudioRoutingGroup)

Adds the specified AudioRoutingGroup to the collection via POST.

Declaration
Task<AudioRoutingGroup> AddAsync(AudioRoutingGroup AudioRoutingGroup)
Parameters
Type Name Description
AudioRoutingGroup AudioRoutingGroup

The AudioRoutingGroup to add.

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

The created AudioRoutingGroup.

View Source

AddAsync(AudioRoutingGroup, CancellationToken)

Adds the specified AudioRoutingGroup to the collection via POST.

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

The AudioRoutingGroup to add.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created AudioRoutingGroup.

View Source

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

Adds the specified expand value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest 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
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

Filter(String)

Adds the specified filter value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest Filter(string value)
Parameters
Type Name Description
System.String value

The filter value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

GetAsync()

Gets the collection page.

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

The collection page.

View Source

GetAsync(CancellationToken)

Gets the collection page.

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

The collection page.

View Source

OrderBy(String)

Adds the specified orderby value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest OrderBy(string value)
Parameters
Type Name Description
System.String value

The orderby value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

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

Adds the specified select value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest 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
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

Skip(Int32)

Adds the specified skip value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest Skip(int value)
Parameters
Type Name Description
System.Int32 value

The skip value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

View Source

Top(Int32)

Adds the specified top value to the request.

Declaration
ICallAudioRoutingGroupsCollectionRequest Top(int value)
Parameters
Type Name Description
System.Int32 value

The top value.

Returns
Type Description
ICallAudioRoutingGroupsCollectionRequest

The request object to send.

  • View Source
Back to top Generated by DocFX