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
IsDeprecated
Gets a value that indicates whether this voice region is no longer being maintained.
bool IsDeprecated { get; }
Property Value
IsOptimal
Gets a value that indicates whether this voice region is optimal for your client in terms of latency.
bool IsOptimal { get; }
Property Value
IsVip
Gets a value that indicates whether or not this voice region is exclusive to partnered servers.
bool IsVip { get; }
Property Value
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
).