Class ForumChannelProperties
Inherited Members
Namespace: Discord
Assembly: Discord.Net.Core.dll
Syntax
public class ForumChannelProperties : TextChannelProperties
Properties
| Improve this Doc View SourceDefaultLayout
Gets or sets the rule used to display posts in a forum channel.
Declaration
public Optional<ForumLayout> DefaultLayout { get; set; }
Property Value
Type | Description |
---|---|
Optional<ForumLayout> |
DefaultReactionEmoji
Gets or sets a new default reaction emoji in this forum channel.
Declaration
public Optional<IEmote> DefaultReactionEmoji { get; set; }
Property Value
Type | Description |
---|---|
Optional<IEmote> |
DefaultSortOrder
Gets or sets the rule used to order posts in forum channels.
Declaration
public Optional<ForumSortOrder> DefaultSortOrder { get; set; }
Property Value
Type | Description |
---|---|
Optional<ForumSortOrder> |
SlowModeInterval
Gets or sets the topic of the channel.
Declaration
public Optional<int> SlowModeInterval { get; }
Property Value
Type | Description |
---|---|
Optional<Int32> |
Remarks
Not available in forum channels.
Tags
Gets or sets a collection of tags inside of this forum channel.
Declaration
public Optional<IEnumerable<IForumTag>> Tags { get; set; }
Property Value
Type | Description |
---|---|
Optional<IEnumerable<IForumTag>> |
ThreadCreationInterval
Gets or sets rate limit on creating posts in this forum channel.
Declaration
public Optional<int> ThreadCreationInterval { get; set; }
Property Value
Type | Description |
---|---|
Optional<Int32> |
Remarks
Setting this value to anything above zero will require each user to wait X seconds before
creating another thread; setting this value to 0
will disable rate limits for this channel.
note
Users with ManageMessages or ManageChannels will be exempt from rate limits.