Show / Hide Table of Contents

Interface IInviteParticipantsOperationRequest

The interface IInviteParticipantsOperationRequest.

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

Methods

View Source

CreateAsync(InviteParticipantsOperation)

Creates the specified InviteParticipantsOperation using PUT.

Declaration
Task<InviteParticipantsOperation> CreateAsync(InviteParticipantsOperation inviteParticipantsOperationToCreate)
Parameters
Type Name Description
InviteParticipantsOperation inviteParticipantsOperationToCreate

The InviteParticipantsOperation to create.

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

The created InviteParticipantsOperation.

View Source

CreateAsync(InviteParticipantsOperation, CancellationToken)

Creates the specified InviteParticipantsOperation using PUT.

Declaration
Task<InviteParticipantsOperation> CreateAsync(InviteParticipantsOperation inviteParticipantsOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
InviteParticipantsOperation inviteParticipantsOperationToCreate

The InviteParticipantsOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created InviteParticipantsOperation.

View Source

DeleteAsync()

Deletes the specified InviteParticipantsOperation.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified InviteParticipantsOperation.

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

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
IInviteParticipantsOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IInviteParticipantsOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified InviteParticipantsOperation.

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

The InviteParticipantsOperation.

View Source

GetAsync(CancellationToken)

Gets the specified InviteParticipantsOperation.

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

The InviteParticipantsOperation.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
IInviteParticipantsOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IInviteParticipantsOperationRequest

The request object to send.

View Source

UpdateAsync(InviteParticipantsOperation)

Updates the specified InviteParticipantsOperation using PATCH.

Declaration
Task<InviteParticipantsOperation> UpdateAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate)
Parameters
Type Name Description
InviteParticipantsOperation inviteParticipantsOperationToUpdate

The InviteParticipantsOperation to update.

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

The updated InviteParticipantsOperation.

View Source

UpdateAsync(InviteParticipantsOperation, CancellationToken)

Updates the specified InviteParticipantsOperation using PATCH.

Declaration
Task<InviteParticipantsOperation> UpdateAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
InviteParticipantsOperation inviteParticipantsOperationToUpdate

The InviteParticipantsOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated InviteParticipantsOperation.

  • View Source
Back to top Generated by DocFX