Class RestGroupChannel
Represents a REST-based group-message channel.
Assembly: Discord.Net.Rest.dll​
View Source​
public class RestGroupChannel : RestChannel, IUpdateable, IGroupChannel, IRestPrivateChannel, IPrivateChannel, IRestMessageChannel, IMessageChannel, IRestAudioChannel, IAudioChannel, IChannel, ISnowflakeEntity, IEntity<ulong>
Properties​
Name​
Gets the name of this channel.
View Source​
public string Name { get; }
Users​
View Source​
public IReadOnlyCollection<RestGroupUser> Users { get; }
Recipients​
View Source​
public IReadOnlyCollection<RestGroupUser> Recipients { get; }
IRestPrivateChannel.Recipients​
View Source​
IReadOnlyCollection<RestUser> IRestPrivateChannel.Recipients { get; }
IPrivateChannel.Recipients​
View Source​
IReadOnlyCollection<IUser> IPrivateChannel.Recipients { get; }
Methods​
UpdateAsync(RequestOptions)​
Updates this object's properties with its current state.
View Source​
public override async Task UpdateAsync(RequestOptions options = null)
Returns​
System.Threading.Tasks.Task
Parameters​
Type | Name | Description |
---|---|---|
Discord.RequestOptions | options | The options to be used when sending the request. |
LeaveAsync(RequestOptions)​
Leaves this group.
View Source​
public Task LeaveAsync(RequestOptions options = null)
Returns​
System.Threading.Tasks.Task
:
A task that represents the asynchronous leave operation.
Parameters​
Type | Name | Description |
---|---|---|
Discord.RequestOptions | options | The options to be used when sending the request. |
GetUser(UInt64)​
View Source​
public RestUser GetUser(ulong id)
Returns​
Parameters​
Type | Name |
---|---|
System.UInt64 | id |
GetMessageAsync(UInt64, RequestOptions)​
Gets a message from this message channel.
View Source​
public Task<RestMessage> GetMessageAsync(ulong id, RequestOptions options = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestMessage>
:
A task that represents an asynchronous get operation for retrieving the message. The task result contains
the retrieved message; null
if no message is found with the specified identifier.
Parameters​
Type | Name | Description |
---|---|---|
System.UInt64 | id | The snowflake identifier of the message. |
Discord.RequestOptions | options | The options to be used when sending the request. |
GetMessagesAsync(Int32, RequestOptions)​
Gets the last N messages from this message channel.
View Source​
public IAsyncEnumerable<IReadOnlyCollection<RestMessage>> GetMessagesAsync(int limit = 100, RequestOptions options = null)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.Rest.RestMessage>>
:
Paged collection of messages.
Parameters​
Type | Name | Description |
---|---|---|
System.Int32 | limit | The numbers of message to be gotten from. |
Discord.RequestOptions | options | The options to be used when sending the request. |
GetMessagesAsync(UInt64, Direction, Int32, RequestOptions)​
Gets a collection of messages in this channel.
View Source​
public IAsyncEnumerable<IReadOnlyCollection<RestMessage>> GetMessagesAsync(ulong fromMessageId, Direction dir, int limit = 100, RequestOptions options = null)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.Rest.RestMessage>>
:
Paged collection of messages.
Parameters​
Type | Name | Description |
---|---|---|
System.UInt64 | fromMessageId | The ID of the starting message to get the messages from. |
Discord.Direction | dir | The direction of the messages to be gotten from. |
System.Int32 | limit | The numbers of message to be gotten from. |
Discord.RequestOptions | options | The options to be used when sending the request. |
GetMessagesAsync(IMessage, Direction, Int32, RequestOptions)​
Gets a collection of messages in this channel.
View Source​
public IAsyncEnumerable<IReadOnlyCollection<RestMessage>> GetMessagesAsync(IMessage fromMessage, Direction dir, int limit = 100, RequestOptions options = null)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.Rest.RestMessage>>
:
Paged collection of messages.
Parameters​
Type | Name | Description |
---|---|---|
Discord.IMessage | fromMessage | The starting message to get the messages from. |
Discord.Direction | dir | The direction of the messages to be gotten from. |
System.Int32 | limit | The numbers of message to be gotten from. |
Discord.RequestOptions | options | The options to be used when sending the request. |
GetPinnedMessagesAsync(RequestOptions)​
Gets a collection of pinned messages in this channel.
View Source​
public Task<IReadOnlyCollection<RestMessage>> GetPinnedMessagesAsync(RequestOptions options = null)
Returns​
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyCollection<Discord.Rest.RestMessage>>
:
A task that represents the asynchronous get operation for retrieving pinned messages in this channel.
The task result contains a collection of messages found in the pinned messages.
Parameters​
Type | Name | Description |
---|---|---|
Discord.RequestOptions | options | The options to be used when sending the request. |
DeleteMessageAsync(UInt64, RequestOptions)​
Deletes a message.
View Source​
public Task DeleteMessageAsync(ulong messageId, RequestOptions options = null)
Returns​
System.Threading.Tasks.Task
:
A task that represents the asynchronous removal operation.
Parameters​
Type | Name | Description |
---|---|---|
System.UInt64 | messageId | The snowflake identifier of the message that would be removed. |
Discord.RequestOptions | options | The options to be used when sending the request. |
DeleteMessageAsync(IMessage, RequestOptions)​
Deletes a message based on the provided message in this channel.
View Source​
public Task DeleteMessageAsync(IMessage message, RequestOptions options = null)
Returns​
System.Threading.Tasks.Task
:
A task that represents the asynchronous removal operation.
Parameters​
Type | Name | Description |
---|---|---|
Discord.IMessage | message | The message that would be removed. |
Discord.RequestOptions | options | The options to be used when sending the request. |
ModifyMessageAsync(UInt64, Action<MessageProperties>, RequestOptions)​
Modifies a message.
View Source​
public async Task<IUserMessage> ModifyMessageAsync(ulong messageId, Action<MessageProperties> func, RequestOptions options = null)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
:
A task that represents the asynchronous modification operation.
Parameters​
Type | Name | Description |
---|---|---|
System.UInt64 | messageId | The snowflake identifier of the message that would be changed. |
System.Action<Discord.MessageProperties> | func | A delegate containing the properties to modify the message with. |
Discord.RequestOptions | options | The options to be used when sending the request. |
SendMessageAsync(String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
Sends a message to this message channel.
View Source​
public Task<RestUserMessage> SendMessageAsync(string text = null, bool isTTS = false, Embed embed = null, RequestOptions options = null, AllowedMentions allowedMentions = null, MessageReference messageReference = null, MessageComponent component = null, ISticker[] stickers = null, Embed[] embeds = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestUserMessage>
:
A task that represents an asynchronous send operation for delivering the message. The task result
contains the sent message.
Parameters​
Type | Name | Description |
---|---|---|
System.String | text | The message to be sent. |
System.Boolean | isTTS | Determines whether the message should be read aloud by Discord or not. |
Discord.Embed | embed | The Discord.EmbedType.Rich Discord.Embed to be sent. |
Discord.RequestOptions | options | The options to be used when sending the request. |
Discord.AllowedMentions | allowedMentions |
Specifies if notifications are sent for mentioned users and roles in the message <code data-dev-comment-type="paramref" class="paramref">text</code>.
If null
, all mentioned roles and users will be notified.
|
| Discord.MessageReference | messageReference | The message references to be included. Used to reply to specific messages. |
| Discord.MessageComponent | component | The message components to be included with this message. Used for interactions. |
| Discord.ISticker[]
| stickers | A collection of stickers to send with the message. |
| Discord.Embed[]
| embeds | A array of Discord.Embeds to send with this response. Max 10. |
SendFileAsync(String, String, Boolean, Embed, RequestOptions, Boolean, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
Sends a file to this message channel with an optional caption.
View Source​
public Task<RestUserMessage> SendFileAsync(string filePath, string text, bool isTTS = false, Embed embed = null, RequestOptions options = null, bool isSpoiler = false, AllowedMentions allowedMentions = null, MessageReference messageReference = null, MessageComponent component = null, ISticker[] stickers = null, Embed[] embeds = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestUserMessage>
:
A task that represents an asynchronous send operation for delivering the message. The task result
contains the sent message.
Parameters​
Type | Name | Description |
---|---|---|
System.String | filePath | The file path of the file. |
System.String | text | The message to be sent. |
System.Boolean | isTTS | Whether the message should be read aloud by Discord or not. |
Discord.Embed | embed | The Discord.EmbedType.Rich Discord.Embed to be sent. |
Discord.RequestOptions | options | The options to be used when sending the request. |
System.Boolean | isSpoiler | Whether the message attachment should be hidden as a spoiler. |
Discord.AllowedMentions | allowedMentions |
Specifies if notifications are sent for mentioned users and roles in the message <code data-dev-comment-type="paramref" class="paramref">text</code>.
If null
, all mentioned roles and users will be notified.
|
| Discord.MessageReference | messageReference | The message references to be included. Used to reply to specific messages. |
| Discord.MessageComponent | component | The message components to be included with this message. Used for interactions. |
| Discord.ISticker[]
| stickers | A collection of stickers to send with the message. |
| Discord.Embed[]
| embeds | A array of Discord.Embeds to send with this response. Max 10. |
SendFileAsync(Stream, String, String, Boolean, Embed, RequestOptions, Boolean, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
Sends a file to this message channel with an optional caption.
View Source​
public Task<RestUserMessage> SendFileAsync(Stream stream, string filename, string text, bool isTTS = false, Embed embed = null, RequestOptions options = null, bool isSpoiler = false, AllowedMentions allowedMentions = null, MessageReference messageReference = null, MessageComponent component = null, ISticker[] stickers = null, Embed[] embeds = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestUserMessage>
:
A task that represents an asynchronous send operation for delivering the message. The task result
contains the sent message.
Parameters​
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | The System.IO.Stream of the file to be sent. |
System.String | filename | The name of the attachment. |
System.String | text | The message to be sent. |
System.Boolean | isTTS | Whether the message should be read aloud by Discord or not. |
Discord.Embed | embed | The Discord.EmbedType.Rich Discord.Embed to be sent. |
Discord.RequestOptions | options | The options to be used when sending the request. |
System.Boolean | isSpoiler | Whether the message attachment should be hidden as a spoiler. |
Discord.AllowedMentions | allowedMentions |
Specifies if notifications are sent for mentioned users and roles in the message <code data-dev-comment-type="paramref" class="paramref">text</code>.
If null
, all mentioned roles and users will be notified.
|
| Discord.MessageReference | messageReference | The message references to be included. Used to reply to specific messages. |
| Discord.MessageComponent | component | The message components to be included with this message. Used for interactions. |
| Discord.ISticker[]
| stickers | A collection of stickers to send with the message. |
| Discord.Embed[]
| embeds | A array of Discord.Embeds to send with this response. Max 10. |
SendFileAsync(FileAttachment, String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
public Task<RestUserMessage> SendFileAsync(FileAttachment attachment, string text, bool isTTS = false, Embed embed = null, RequestOptions options = null, AllowedMentions allowedMentions = null, MessageReference messageReference = null, MessageComponent component = null, ISticker[] stickers = null, Embed[] embeds = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestUserMessage>
Parameters​
Type | Name |
---|---|
Discord.FileAttachment | attachment |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
SendFilesAsync(IEnumerable<FileAttachment>, String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
public Task<RestUserMessage> SendFilesAsync(IEnumerable<FileAttachment> attachments, string text, bool isTTS = false, Embed embed = null, RequestOptions options = null, AllowedMentions allowedMentions = null, MessageReference messageReference = null, MessageComponent component = null, ISticker[] stickers = null, Embed[] embeds = null)
Returns​
System.Threading.Tasks.Task<Discord.Rest.RestUserMessage>
Parameters​
Type | Name |
---|---|
System.Collections.Generic.IEnumerable<Discord.FileAttachment> | attachments |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
TriggerTypingAsync(RequestOptions)​
Broadcasts the "user is typing" message to all users in this channel, lasting 10 seconds.
View Source​
public Task TriggerTypingAsync(RequestOptions options = null)
Returns​
System.Threading.Tasks.Task
:
A task that represents the asynchronous operation that triggers the broadcast.
Parameters​
Type | Name | Description |
---|---|---|
Discord.RequestOptions | options | The options to be used when sending the request. |
EnterTypingState(RequestOptions)​
Continuously broadcasts the "user is typing" message to all users in this channel until the returned object is disposed.
View Source​
public IDisposable EnterTypingState(RequestOptions options = null)
Returns​
System.IDisposable
:
A disposable object that, upon its disposal, will stop the client from broadcasting its typing state in
this channel.
Parameters​
Type | Name | Description |
---|---|---|
Discord.RequestOptions | options | The options to be used when sending the request. |
ToString()​
View Source​
public override string ToString()
Returns​
System.String
IMessageChannel.GetMessageAsync(UInt64, CacheMode, RequestOptions)​
View Source​
async Task<IMessage> IMessageChannel.GetMessageAsync(ulong id, CacheMode mode, RequestOptions options)
Returns​
System.Threading.Tasks.Task<Discord.IMessage>
Parameters​
Type | Name |
---|---|
System.UInt64 | id |
Discord.CacheMode | mode |
Discord.RequestOptions | options |
IMessageChannel.GetMessagesAsync(Int32, CacheMode, RequestOptions)​
View Source​
IAsyncEnumerable<IReadOnlyCollection<IMessage>> IMessageChannel.GetMessagesAsync(int limit, CacheMode mode, RequestOptions options)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.IMessage>>
Parameters​
Type | Name |
---|---|
System.Int32 | limit |
Discord.CacheMode | mode |
Discord.RequestOptions | options |
IMessageChannel.GetMessagesAsync(UInt64, Direction, Int32, CacheMode, RequestOptions)​
View Source​
IAsyncEnumerable<IReadOnlyCollection<IMessage>> IMessageChannel.GetMessagesAsync(ulong fromMessageId, Direction dir, int limit, CacheMode mode, RequestOptions options)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.IMessage>>
Parameters​
Type | Name |
---|---|
System.UInt64 | fromMessageId |
Discord.Direction | dir |
System.Int32 | limit |
Discord.CacheMode | mode |
Discord.RequestOptions | options |
IMessageChannel.GetMessagesAsync(IMessage, Direction, Int32, CacheMode, RequestOptions)​
View Source​
IAsyncEnumerable<IReadOnlyCollection<IMessage>> IMessageChannel.GetMessagesAsync(IMessage fromMessage, Direction dir, int limit, CacheMode mode, RequestOptions options)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.IMessage>>
Parameters​
Type | Name |
---|---|
Discord.IMessage | fromMessage |
Discord.Direction | dir |
System.Int32 | limit |
Discord.CacheMode | mode |
Discord.RequestOptions | options |
IMessageChannel.GetPinnedMessagesAsync(RequestOptions)​
View Source​
async Task<IReadOnlyCollection<IMessage>> IMessageChannel.GetPinnedMessagesAsync(RequestOptions options)
Returns​
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyCollection<Discord.IMessage>>
Parameters​
Type | Name |
---|---|
Discord.RequestOptions | options |
IMessageChannel.SendFileAsync(String, String, Boolean, Embed, RequestOptions, Boolean, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
async Task<IUserMessage> IMessageChannel.SendFileAsync(string filePath, string text, bool isTTS, Embed embed, RequestOptions options, bool isSpoiler, AllowedMentions allowedMentions, MessageReference messageReference, MessageComponent component, ISticker[] stickers, Embed[] embeds)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
Parameters​
Type | Name |
---|---|
System.String | filePath |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
System.Boolean | isSpoiler |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
IMessageChannel.SendFileAsync(Stream, String, String, Boolean, Embed, RequestOptions, Boolean, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
async Task<IUserMessage> IMessageChannel.SendFileAsync(Stream stream, string filename, string text, bool isTTS, Embed embed, RequestOptions options, bool isSpoiler, AllowedMentions allowedMentions, MessageReference messageReference, MessageComponent component, ISticker[] stickers, Embed[] embeds)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
Parameters​
Type | Name |
---|---|
System.IO.Stream | stream |
System.String | filename |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
System.Boolean | isSpoiler |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
IMessageChannel.SendFileAsync(FileAttachment, String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
async Task<IUserMessage> IMessageChannel.SendFileAsync(FileAttachment attachment, string text, bool isTTS, Embed embed, RequestOptions options, AllowedMentions allowedMentions, MessageReference messageReference, MessageComponent component, ISticker[] stickers, Embed[] embeds)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
Parameters​
Type | Name |
---|---|
Discord.FileAttachment | attachment |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
IMessageChannel.SendFilesAsync(IEnumerable<FileAttachment>, String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
async Task<IUserMessage> IMessageChannel.SendFilesAsync(IEnumerable<FileAttachment> attachments, string text, bool isTTS, Embed embed, RequestOptions options, AllowedMentions allowedMentions, MessageReference messageReference, MessageComponent component, ISticker[] stickers, Embed[] embeds)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
Parameters​
Type | Name |
---|---|
System.Collections.Generic.IEnumerable<Discord.FileAttachment> | attachments |
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
IMessageChannel.SendMessageAsync(String, Boolean, Embed, RequestOptions, AllowedMentions, MessageReference, MessageComponent, ISticker[], Embed[])​
View Source​
async Task<IUserMessage> IMessageChannel.SendMessageAsync(string text, bool isTTS, Embed embed, RequestOptions options, AllowedMentions allowedMentions, MessageReference messageReference, MessageComponent component, ISticker[] stickers, Embed[] embeds)
Returns​
System.Threading.Tasks.Task<Discord.IUserMessage>
Parameters​
Type | Name |
---|---|
System.String | text |
System.Boolean | isTTS |
Discord.Embed | embed |
Discord.RequestOptions | options |
Discord.AllowedMentions | allowedMentions |
Discord.MessageReference | messageReference |
Discord.MessageComponent | component |
Discord.ISticker[] | stickers |
Discord.Embed[] | embeds |
IAudioChannel.ConnectAsync(Boolean, Boolean, Boolean)​
Connects to this audio channel.
View Source​
Task<IAudioClient> IAudioChannel.ConnectAsync(bool selfDeaf, bool selfMute, bool external)
Returns​
System.Threading.Tasks.Task<Discord.Audio.IAudioClient>
:
A task representing the asynchronous connection operation. The task result contains the
Discord.Audio.IAudioClient responsible for the connection.
Parameters​
Type | Name | Description |
---|---|---|
System.Boolean | selfDeaf | Determines whether the client should deaf itself upon connection. |
System.Boolean | selfMute | Determines whether the client should mute itself upon connection. |
System.Boolean | external | Determines whether the audio client is an external one or not. |
IAudioChannel.DisconnectAsync()​
View Source​
Task IAudioChannel.DisconnectAsync()
Returns​
System.Threading.Tasks.Task
IChannel.GetUserAsync(UInt64, CacheMode, RequestOptions)​
View Source​
Task<IUser> IChannel.GetUserAsync(ulong id, CacheMode mode, RequestOptions options)
Returns​
System.Threading.Tasks.Task<Discord.IUser>
Parameters​
Type | Name |
---|---|
System.UInt64 | id |
Discord.CacheMode | mode |
Discord.RequestOptions | options |
IChannel.GetUsersAsync(CacheMode, RequestOptions)​
View Source​
IAsyncEnumerable<IReadOnlyCollection<IUser>> IChannel.GetUsersAsync(CacheMode mode, RequestOptions options)
Returns​
System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.IReadOnlyCollection<Discord.IUser>>
Parameters​
Type | Name |
---|---|
Discord.CacheMode | mode |
Discord.RequestOptions | options |