[Modify] Edit it
This commit is contained in:
parent
1383bd6292
commit
6cc77601dd
@ -773,14 +773,22 @@ namespace WebSocketSharp.Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sends a Ping to every client in the WebSocket services.
|
/// Sends a ping to every client in the WebSocket services.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// A <c>Dictionary<string, Dictionary<string, bool>></c> that contains
|
/// <para>
|
||||||
/// a collection of pairs of a service path and a collection of pairs of a session ID
|
/// A <c>Dictionary<string, Dictionary<string, bool>></c>.
|
||||||
/// and a value indicating whether the manager received a Pong from each client in a time,
|
/// </para>
|
||||||
/// or <see langword="null"/> if this method isn't available.
|
/// <para>
|
||||||
|
/// It contains a collection of pairs of a service path and
|
||||||
|
/// another collection of pairs of a session ID and a value
|
||||||
|
/// indicating whether a pong has been received within a time
|
||||||
|
/// from a client.
|
||||||
|
/// </para>
|
||||||
/// </returns>
|
/// </returns>
|
||||||
|
/// <exception cref="InvalidOperationException">
|
||||||
|
/// The current state of the manager is not Start.
|
||||||
|
/// </exception>
|
||||||
public Dictionary<string, Dictionary<string, bool>> Broadping ()
|
public Dictionary<string, Dictionary<string, bool>> Broadping ()
|
||||||
{
|
{
|
||||||
if (_state != ServerState.Start) {
|
if (_state != ServerState.Start) {
|
||||||
|
Loading…
Reference in New Issue
Block a user