Table of Contents

Interface IVoiceState

Namespace
Kook
Assembly
Kook.Net.Core.dll

Represents a user's voice connection status.

public interface IVoiceState

Properties

IsDeafened

Gets a value that indicates whether this user is deafened by the guild.

bool? IsDeafened { get; }

Property Value

bool?

true if the user is deafened (i.e. not permitted to listen to or speak to others) by the guild; otherwise false; null if unknown.

IsMuted

Gets a value that indicates whether this user is muted (i.e. not permitted to speak via voice) by the guild.

bool? IsMuted { get; }

Property Value

bool?

true if this user is muted by the guild; otherwise false; null if unknown.

VoiceChannel

Gets the voice channel this user is currently in.

IVoiceChannel? VoiceChannel { get; }

Property Value

IVoiceChannel

A generic voice channel object representing the voice channel that the user is currently in; null if none.