Browse Source

Minor comment edit

tags/docs-0.9
RogueException 9 years ago
parent
commit
d9b1779a3d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/DiscordWSClientConfig.cs

+ 1
- 1
src/Discord.Net/DiscordWSClientConfig.cs View File

@@ -30,7 +30,7 @@ namespace Discord
/// <summary> Gets or sets the max buffer length (in milliseconds) for outgoing voice packets. This value is the target maximum but is not guaranteed, the buffer will often go slightly above this value. </summary>
public int VoiceBufferLength { get { return _voiceBufferLength; } set { SetValue(ref _voiceBufferLength, value); } }
private int _voiceBufferLength = 1000;
/// <summary> Gets or sets the bitrate used (in kbit/s, between 1 and 512) for outgoing voice packets. A null value will use default opus settings. </summary>
/// <summary> Gets or sets the bitrate used (in kbit/s, between 1 and 512 inclusively) for outgoing voice packets. A null value will use default Opus settings. </summary>
public int? VoiceBitrate { get { return _voiceBitrate; } set { SetValue(ref _voiceBitrate, value); } }
private int? _voiceBitrate = null;



Loading…
Cancel
Save