Show / Hide Table of Contents

Interface IChatParticipantsCollectionRequestBuilder

The interface IChatParticipantsCollectionRequestBuilder.

Inherited Members
IBaseRequestBuilder.Client
IBaseRequestBuilder.RequestUrl
IBaseRequestBuilder.AppendSegmentToRequestUrl(String)
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IChatParticipantsCollectionRequestBuilder : IBaseRequestBuilder

Properties

View Source

Item[String]

Gets an IChatParticipantRequestBuilder for the specified ChatParticipant.

Declaration
IChatParticipantRequestBuilder this[string id] { get; }
Parameters
Type Name Description
System.String id

The ID for the ChatParticipant.

Property Value
Type Description
IChatParticipantRequestBuilder

The IChatParticipantRequestBuilder.

Methods

View Source

Add(IEnumerable<ChatParticipantInfo>)

Gets the request builder for ChatParticipantAdd.

Declaration
IChatParticipantAddRequestBuilder Add(IEnumerable<ChatParticipantInfo> participants = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<ChatParticipantInfo> participants
Returns
Type Description
IChatParticipantAddRequestBuilder

The IChatParticipantAddRequestBuilder.

View Source

Remove(IEnumerable<String>)

Gets the request builder for ChatParticipantRemove.

Declaration
IChatParticipantRemoveRequestBuilder Remove(IEnumerable<string> participants = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> participants
Returns
Type Description
IChatParticipantRemoveRequestBuilder

The IChatParticipantRemoveRequestBuilder.

View Source

Request()

Builds the request.

Declaration
IChatParticipantsCollectionRequest Request()
Returns
Type Description
IChatParticipantsCollectionRequest

The built request.

View Source

Request(IEnumerable<Option>)

Builds the request.

Declaration
IChatParticipantsCollectionRequest Request(IEnumerable<Option> options)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<Option> options

The query and header options for the request.

Returns
Type Description
IChatParticipantsCollectionRequest

The built request.

  • View Source
Back to top Generated by DocFX