Interface IChatParticipantsCollectionRequestBuilder
The interface IChatParticipantsCollectionRequestBuilder.
Inherited Members
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IChatParticipantsCollectionRequestBuilder : IBaseRequestBuilder
Properties
View SourceItem[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 |
Methods
View SourceAdd(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 |
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 |
Request()
Builds the request.
Declaration
IChatParticipantsCollectionRequest Request()
Returns
Type | Description |
---|---|
IChatParticipantsCollectionRequest | The built request. |
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. |