Interface ICallParticipantsCollectionRequest
The interface ICallParticipantsCollectionRequest.
Inherited Members
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface ICallParticipantsCollectionRequest : IBaseRequest
Methods
View SourceAddAsync(Participant)
Adds the specified Participant to the collection via POST.
Declaration
Task<Participant> AddAsync(Participant Participant)
Parameters
Type | Name | Description |
---|---|---|
Participant | Participant | The Participant to add. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<Participant> | The created Participant. |
AddAsync(Participant, CancellationToken)
Adds the specified Participant to the collection via POST.
Declaration
Task<Participant> AddAsync(Participant Participant, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
Participant | Participant | The Participant to add. |
System.Threading.CancellationToken | cancellationToken | The System.Threading.CancellationToken for the request. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<Participant> | The created Participant. |
Expand(Expression<Func<Participant, Object>>)
Adds the specified expand value to the request.
Declaration
ICallParticipantsCollectionRequest Expand(Expression<Func<Participant, object>> expandExpression)
Parameters
Type | Name | Description |
---|---|---|
System.Linq.Expressions.Expression<System.Func<Participant, System.Object>> | expandExpression | The expression from which to calculate the expand value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Expand(String)
Adds the specified expand value to the request.
Declaration
ICallParticipantsCollectionRequest Expand(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The expand value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Filter(String)
Adds the specified filter value to the request.
Declaration
ICallParticipantsCollectionRequest Filter(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The filter value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
GetAsync()
Gets the collection page.
Declaration
Task<ICallParticipantsCollectionPage> GetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<ICallParticipantsCollectionPage> | The collection page. |
GetAsync(CancellationToken)
Gets the collection page.
Declaration
Task<ICallParticipantsCollectionPage> 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<ICallParticipantsCollectionPage> | The collection page. |
OrderBy(String)
Adds the specified orderby value to the request.
Declaration
ICallParticipantsCollectionRequest OrderBy(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The orderby value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Select(Expression<Func<Participant, Object>>)
Adds the specified select value to the request.
Declaration
ICallParticipantsCollectionRequest Select(Expression<Func<Participant, object>> selectExpression)
Parameters
Type | Name | Description |
---|---|---|
System.Linq.Expressions.Expression<System.Func<Participant, System.Object>> | selectExpression | The expression from which to calculate the select value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Select(String)
Adds the specified select value to the request.
Declaration
ICallParticipantsCollectionRequest Select(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The select value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Skip(Int32)
Adds the specified skip value to the request.
Declaration
ICallParticipantsCollectionRequest Skip(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | The skip value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |
Top(Int32)
Adds the specified top value to the request.
Declaration
ICallParticipantsCollectionRequest Top(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | The top value. |
Returns
Type | Description |
---|---|
ICallParticipantsCollectionRequest | The request object to send. |