Class ChatParticipantsCollectionRequestBuilder
The type ChatParticipantsCollectionRequestBuilder.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public class ChatParticipantsCollectionRequestBuilder : BaseRequestBuilder, IChatParticipantsCollectionRequestBuilder, IBaseRequestBuilder
Constructors
View SourceChatParticipantsCollectionRequestBuilder(String, IBaseClient)
Constructs a new ChatParticipantsCollectionRequestBuilder.
Declaration
public ChatParticipantsCollectionRequestBuilder(string requestUrl, IBaseClient client)
Parameters
Type | Name | Description |
---|---|---|
System.String | requestUrl | The URL for the built request. |
IBaseClient | client | The IBaseClient for handling requests. |
Properties
View SourceItem[String]
Gets an IChatParticipantRequestBuilder for the specified ChatChatParticipant.
Declaration
public IChatParticipantRequestBuilder this[string id] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | id | The ID for the ChatChatParticipant. |
Property Value
Type | Description |
---|---|
IChatParticipantRequestBuilder |
Methods
View SourceAdd(IEnumerable<ChatParticipantInfo>)
Gets the request builder for ChatParticipantAdd.
Declaration
public 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
public 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
public IChatParticipantsCollectionRequest Request()
Returns
Type | Description |
---|---|
IChatParticipantsCollectionRequest | The built request. |
Request(IEnumerable<Option>)
Builds the request.
Declaration
public 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. |