|
|
|
@ -557,13 +557,21 @@ namespace WebSocketSharp.Server
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Sends a Ping to every client in the WebSocket service.
|
|
|
|
/// Sends a ping to every client in the WebSocket service.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>
|
|
|
|
/// <returns>
|
|
|
|
/// A <c>Dictionary<string, bool></c> that contains a collection of pairs of
|
|
|
|
/// <para>
|
|
|
|
/// a session ID and a value indicating whether the manager received a Pong from
|
|
|
|
/// A <c>Dictionary<string, bool></c>.
|
|
|
|
/// each client in a time.
|
|
|
|
/// </para>
|
|
|
|
|
|
|
|
/// <para>
|
|
|
|
|
|
|
|
/// It represents a collection of pairs of a session ID and
|
|
|
|
|
|
|
|
/// a value indicating whether a pong has been received from
|
|
|
|
|
|
|
|
/// its client within a time.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
/// </returns>
|
|
|
|
/// </returns>
|
|
|
|
|
|
|
|
/// <exception cref="InvalidOperationException">
|
|
|
|
|
|
|
|
/// The current state of the manager is not Start.
|
|
|
|
|
|
|
|
/// </exception>
|
|
|
|
public Dictionary<string, bool> Broadping ()
|
|
|
|
public Dictionary<string, bool> Broadping ()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (_state != ServerState.Start) {
|
|
|
|
if (_state != ServerState.Start) {
|
|
|
|
|