Modified a few in WebSocketServiceHost.cs

This commit is contained in:
sta 2014-09-03 21:43:42 +09:00
parent a6128fc473
commit bc4cb2033d

View File

@ -69,9 +69,7 @@ namespace WebSocketSharp.Server
/// <c>true</c> if the WebSocket service cleans up the inactive sessions periodically; /// <c>true</c> if the WebSocket service cleans up the inactive sessions periodically;
/// otherwise, <c>false</c>. /// otherwise, <c>false</c>.
/// </value> /// </value>
public abstract bool KeepClean { public abstract bool KeepClean { get; set; }
get; set;
}
/// <summary> /// <summary>
/// Gets the path to the WebSocket service. /// Gets the path to the WebSocket service.
@ -79,9 +77,7 @@ namespace WebSocketSharp.Server
/// <value> /// <value>
/// A <see cref="string"/> that represents the absolute path to the WebSocket service. /// A <see cref="string"/> that represents the absolute path to the WebSocket service.
/// </value> /// </value>
public abstract string Path { public abstract string Path { get; }
get;
}
/// <summary> /// <summary>
/// Gets the access to the sessions in the WebSocket service. /// Gets the access to the sessions in the WebSocket service.
@ -89,9 +85,7 @@ namespace WebSocketSharp.Server
/// <value> /// <value>
/// A <see cref="WebSocketSessionManager"/> that manages the sessions. /// A <see cref="WebSocketSessionManager"/> that manages the sessions.
/// </value> /// </value>
public abstract WebSocketSessionManager Sessions { public abstract WebSocketSessionManager Sessions { get; }
get;
}
/// <summary> /// <summary>
/// Gets the type of the WebSocket service. /// Gets the type of the WebSocket service.
@ -99,9 +93,7 @@ namespace WebSocketSharp.Server
/// <value> /// <value>
/// A <see cref="System.Type"/> that represents the type of the WebSocket service. /// A <see cref="System.Type"/> that represents the type of the WebSocket service.
/// </value> /// </value>
public abstract Type Type { public abstract Type Type { get; }
get;
}
#endregion #endregion