Show / Hide Table of Contents

Interface IParticipantRequest

The interface IParticipantRequest.

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

Methods

View Source

CreateAsync(Participant)

Creates the specified Participant using PUT.

Declaration
Task<Participant> CreateAsync(Participant participantToCreate)
Parameters
Type Name Description
Participant participantToCreate

The Participant to create.

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

The created Participant.

View Source

CreateAsync(Participant, CancellationToken)

Creates the specified Participant using PUT.

Declaration
Task<Participant> CreateAsync(Participant participantToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
Participant participantToCreate

The Participant to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created Participant.

View Source

DeleteAsync()

Deletes the specified Participant.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified Participant.

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

Adds the specified expand value to the request.

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

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IParticipantRequest

The request object to send.

View Source

GetAsync()

Gets the specified Participant.

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

The Participant.

View Source

GetAsync(CancellationToken)

Gets the specified Participant.

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

The Participant.

View Source

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

Adds the specified select value to the request.

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

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IParticipantRequest

The request object to send.

View Source

UpdateAsync(Participant)

Updates the specified Participant using PATCH.

Declaration
Task<Participant> UpdateAsync(Participant participantToUpdate)
Parameters
Type Name Description
Participant participantToUpdate

The Participant to update.

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

The updated Participant.

View Source

UpdateAsync(Participant, CancellationToken)

Updates the specified Participant using PATCH.

Declaration
Task<Participant> UpdateAsync(Participant participantToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
Participant participantToUpdate

The Participant to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated Participant.

  • View Source
Back to top Generated by DocFX