Show / Hide Table of Contents

Interface IChatParticipantAddRequest

The interface IChatParticipantAddRequest.

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

Properties

View Source

RequestBody

Gets the request body.

Declaration
ChatParticipantAddRequestBody RequestBody { get; }
Property Value
Type Description
ChatParticipantAddRequestBody

Methods

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

View Source

Filter(String)

Adds the specified filter value to the request.

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

The filter value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

View Source

OrderBy(String)

Adds the specified orderby value to the request.

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

The orderby value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

View Source

PostAsync()

Issues the POST request.

Declaration
Task<IChatParticipantAddCollectionPage> PostAsync()
Returns
Type Description
System.Threading.Tasks.Task<IChatParticipantAddCollectionPage>
View Source

PostAsync(CancellationToken)

Issues the POST request.

Declaration
Task<IChatParticipantAddCollectionPage> PostAsync(CancellationToken cancellationToken)
Parameters
Type Name Description
System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The task to await for async call.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

View Source

Skip(Int32)

Adds the specified skip value to the request.

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

The skip value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

View Source

Top(Int32)

Adds the specified top value to the request.

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

The top value.

Returns
Type Description
IChatParticipantAddRequest

The request object to send.

  • View Source
Back to top Generated by DocFX