Table of Contents

Class ModifyThreadChannelProperties

Namespace
Kook
Assembly
Kook.Net.Core.dll

提供用于修改 IThreadChannel 的属性。

public class ModifyThreadChannelProperties : ModifyGuildChannelProperties
Inheritance
ModifyThreadChannelProperties
Inherited Members

Properties

PostCreationInterval

获取或设置要设置到此频道的发帖慢速模式延迟。

public SlowModeInterval? PostCreationInterval { get; set; }

Property Value

SlowModeInterval?

Remarks

设置此值将要求每个用户在发布另一条发帖之前等待指定的时间间隔;设置为 None 将会为此频道禁用发帖慢速模式;如果此值为 null,则发帖慢速模式延迟不会被修改。

note

拥有 ManageMessagesManageChannels 权限的用户不受慢速模式延迟的限制。

ReplyInterval

获取或设置要设置到此频道的回帖慢速模式延迟。

public SlowModeInterval? ReplyInterval { get; set; }

Property Value

SlowModeInterval?

Remarks

设置此值将要求每个用户在对任意帖子发布另一条回复之前等待指定的时间间隔;设置为 None 将会为此频道禁用会回帖慢速模式;如果此值为 null,则发帖慢速模式延迟不会被修改。

note

拥有 ManageMessagesManageChannels 权限的用户不受回帖慢速模式延迟的限制。

Topic

获取或设置要设置到此频道的说明。

public string? Topic { get; set; }

Property Value

string

Remarks

如果此值为 null,则频道的说明不会被修改;如果此值为 Empty,则频道的说明将被清空; 设置为其他值将会修改频道的说明。

See Also