Interface IThreadChannel
- Namespace
- Kook
- Assembly
- Kook.Net.Core.dll
表示服务器中一个通用的帖子频道,可以浏览、发布和回复帖子。
public interface IThreadChannel : INestedChannel, IGuildChannel, IChannel, IEntity<ulong>, IDeletable, IMentionable
- Inherited Members
- Extension Methods
Properties
PostCreationInterval
获取此频道设置的发帖速率限制。
int PostCreationInterval { get; }
Property Value
- int
一个
int
,表示用户在可以发布另一条帖子之前需要等待的时间(以秒为单位);如果未启用,则为0
。
Remarks
拥有 ManageMessages 或 ManageChannels 权限的用户不受慢速模式延迟的限制。
ReplyInterval
获取此频道设置的回帖速率限制。
int? ReplyInterval { get; }
Property Value
- int?
一个
int
,表示用户在可以对任意帖子发布另一条回复之前需要等待的时间(以秒为单位);如果未启用,则为0
。
Remarks
拥有 ManageMessages 或 ManageChannels 权限的用户不受慢速模式延迟的限制。
Topic
获取此频道的说明。
string Topic { get; }
Property Value
Methods
ModifyAsync(Action<ModifyThreadChannelProperties>, RequestOptions?)
修改此频道的属性。
Task ModifyAsync(Action<ModifyThreadChannelProperties> func, RequestOptions? options = null)
Parameters
func
Action<ModifyThreadChannelProperties>一个包含修改帖子频道的属性的委托。
options
RequestOptions发送请求时要使用的选项。
Returns
- Task
一个表示异步修改操作的任务。
- See Also