Browse Source

Clarify latency is in milliseconds

tags/1.0-rc
RogueException 9 years ago
parent
commit
6fbf373848
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/DiscordSocketClient.cs

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

@@ -60,7 +60,7 @@ namespace Discord
public int ShardId { get; }
/// <summary> Gets the current connection state of this client. </summary>
public ConnectionState ConnectionState { get; private set; }
/// <summary> Gets the estimated round-trip latency to the gateway server. </summary>
/// <summary> Gets the estimated round-trip latency, in milliseconds, to the gateway server. </summary>
public int Latency { get; private set; }
internal IWebSocketClient GatewaySocket { get; private set; }
internal int MessageCacheSize { get; private set; }


Loading…
Cancel
Save