|
|
|
@ -84,13 +84,18 @@ namespace WebSocketSharp.Server
|
|
|
|
return _websocket != null ? _websocket.Log : null;
|
|
|
|
return _websocket != null ? _websocket.Log : null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the access to the sessions in the WebSocket service.
|
|
|
|
/// Gets the management function for the sessions in the WebSocket service.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <value>
|
|
|
|
/// <value>
|
|
|
|
/// A <see cref="WebSocketSessionManager"/> that provides the access to the sessions,
|
|
|
|
/// <para>
|
|
|
|
/// or <see langword="null"/> if the WebSocket connection isn't established.
|
|
|
|
/// A <see cref="WebSocketSessionManager"/> that manages the sessions in
|
|
|
|
|
|
|
|
/// the service.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
|
|
|
|
/// <para>
|
|
|
|
|
|
|
|
/// <see langword="null"/> if the session has not started yet.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
/// </value>
|
|
|
|
/// </value>
|
|
|
|
protected WebSocketSessionManager Sessions {
|
|
|
|
protected WebSocketSessionManager Sessions {
|
|
|
|
get {
|
|
|
|
get {
|
|
|
|
|