From bc4cb2033dc379da4062aafcc8b112698a6f0e7d Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 3 Sep 2014 21:43:42 +0900 Subject: [PATCH] Modified a few in WebSocketServiceHost.cs --- websocket-sharp/Server/WebSocketServiceHost.cs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/websocket-sharp/Server/WebSocketServiceHost.cs b/websocket-sharp/Server/WebSocketServiceHost.cs index d9152389..a17c6d77 100644 --- a/websocket-sharp/Server/WebSocketServiceHost.cs +++ b/websocket-sharp/Server/WebSocketServiceHost.cs @@ -69,9 +69,7 @@ namespace WebSocketSharp.Server /// true if the WebSocket service cleans up the inactive sessions periodically; /// otherwise, false. /// - public abstract bool KeepClean { - get; set; - } + public abstract bool KeepClean { get; set; } /// /// Gets the path to the WebSocket service. @@ -79,9 +77,7 @@ namespace WebSocketSharp.Server /// /// A that represents the absolute path to the WebSocket service. /// - public abstract string Path { - get; - } + public abstract string Path { get; } /// /// Gets the access to the sessions in the WebSocket service. @@ -89,9 +85,7 @@ namespace WebSocketSharp.Server /// /// A that manages the sessions. /// - public abstract WebSocketSessionManager Sessions { - get; - } + public abstract WebSocketSessionManager Sessions { get; } /// /// Gets the type of the WebSocket service. @@ -99,9 +93,7 @@ namespace WebSocketSharp.Server /// /// A that represents the type of the WebSocket service. /// - public abstract Type Type { - get; - } + public abstract Type Type { get; } #endregion