diff --git a/Example3/Program.cs b/Example3/Program.cs index a54dcb83..4c811dde 100644 --- a/Example3/Program.cs +++ b/Example3/Program.cs @@ -45,7 +45,9 @@ namespace Example3 _httpsv.AddWebSocketService ("/Echo"); _httpsv.AddWebSocketService ("/Chat"); - //_httpsv.AddWebSocketService ("/Chat", () => new Chat ("Anon#")); + //_httpsv.AddWebSocketService ( + // "/Chat", + // () => new Chat ("Anon#") { Protocol = "chat" }); _httpsv.Start (); if (_httpsv.IsListening) { diff --git a/websocket-sharp/Server/IWebSocketSession.cs b/websocket-sharp/Server/IWebSocketSession.cs index 051d1dfc..7d143b14 100644 --- a/websocket-sharp/Server/IWebSocketSession.cs +++ b/websocket-sharp/Server/IWebSocketSession.cs @@ -32,7 +32,7 @@ using WebSocketSharp.Net.WebSockets; namespace WebSocketSharp.Server { /// - /// Exposes the access to the session to the WebSocket service. + /// Exposes the access to the session information in the WebSocket service. /// public interface IWebSocketSession { @@ -41,7 +41,7 @@ namespace WebSocketSharp.Server /// /// /// A that represents the WebSocket connection - /// request. + /// request information. /// WebSocketContext Context { get; } @@ -54,11 +54,19 @@ namespace WebSocketSharp.Server string ID { get; } /// - /// Gets the time that the session has been started. + /// Gets the subprotocol used on the WebSocket connection. + /// + /// + /// A that represents the subprotocol if any. + /// + string Protocol { get; } + + /// + /// Gets the time that the session has started. /// /// /// A that represents the time that the session has - /// been started. + /// started. /// DateTime StartTime { get; } @@ -66,7 +74,7 @@ namespace WebSocketSharp.Server /// Gets the state of the WebSocket connection. /// /// - /// One of the values that indicate the state of + /// One of the enum values, indicates the state of /// the WebSocket connection. /// WebSocketState State { get; }