Table of Contents

Interface IVoiceRegion

Namespace
Discord
Assembly
Discord.Net.Core.dll

Represents a region of which the user connects to when using voice.

public interface IVoiceRegion

Properties

Id

Gets the unique identifier for this voice region.

string Id { get; }

Property Value

string

A string that represents the identifier for this voice region (e.g. eu-central).

IsCustom

Gets a value that indicates whether this voice region is custom-made for events.

bool IsCustom { get; }

Property Value

bool

true if this is a custom voice region (used for events/etc); otherwise false/

IsDeprecated

Gets a value that indicates whether this voice region is no longer being maintained.

bool IsDeprecated { get; }

Property Value

bool

true if this is a deprecated voice region; otherwise false.

IsOptimal

Gets a value that indicates whether this voice region is optimal for your client in terms of latency.

bool IsOptimal { get; }

Property Value

bool

true if this voice region is the closest to your machine; otherwise false .

IsVip

Gets a value that indicates whether or not this voice region is exclusive to partnered servers.

bool IsVip { get; }

Property Value

bool

true if this voice region is exclusive to VIP accounts; otherwise false.

Name

Gets the name of this voice region.

string Name { get; }

Property Value

string

A string that represents the human-readable name of this voice region (e.g. Central Europe).