Interface IVoiceState
- Namespace
- Kook
- Assembly
- Kook.Net.Core.dll
表示一个通用的用户语音连接状态。
public interface IVoiceState
Properties
IsDeafened
获取此用户是否被服务器静音。
bool? IsDeafened { get; }
Property Value
- bool?
Remarks
被服务器静音表示无法在语音频道内接收来自其他用户的语音。
IsMuted
获取此用户是否被服务器闭麦。
bool? IsMuted { get; }
Property Value
- bool?
Remarks
被服务器闭麦表示无法在语音频道内发言。
VoiceChannel
获取此用户当前所连接的语音频道。
IVoiceChannel? VoiceChannel { get; }
Property Value
VoiceChannels
获取此用户连接的所有语音频道。
IReadOnlyCollection<IVoiceChannel> VoiceChannels { get; }