Interface IInviteParticipantsOperationRequest
The interface IInviteParticipantsOperationRequest.
Inherited Members
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IInviteParticipantsOperationRequest : IBaseRequest
Methods
View SourceCreateAsync(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. |
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. |
DeleteAsync()
Deletes the specified InviteParticipantsOperation.
Declaration
Task DeleteAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | The task to await. |
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. |
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. |
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. |
GetAsync()
Gets the specified InviteParticipantsOperation.
Declaration
Task<InviteParticipantsOperation> GetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<InviteParticipantsOperation> | The InviteParticipantsOperation. |
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. |
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. |
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. |
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. |
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. |