Added some XML documentation comments and renamed some method names

This commit is contained in:
sta
2013-02-11 22:57:01 +09:00
parent afe74fe857
commit 9b1772e80a
89 changed files with 1957 additions and 624 deletions

View File

@@ -165,6 +165,7 @@ namespace WebSocketSharp.Server {
/// </summary>
/// <value>
/// <c>true</c> if the server cleans up the inactive clients every 60 seconds; otherwise, <c>false</c>.
/// The default value is <c>true</c>.
/// </value>
public bool Sweeped {
get {
@@ -218,7 +219,7 @@ namespace WebSocketSharp.Server {
#region Public Methods
/// <summary>
/// Adds a WebSocket service.
/// Adds the specified type WebSocket service.
/// </summary>
/// <param name="absPath">
/// A <see cref="string"/> that contains an absolute path associated with the WebSocket service.
@@ -226,7 +227,7 @@ namespace WebSocketSharp.Server {
/// <typeparam name="T">
/// The type of the WebSocket service. The T must inherit the <see cref="WebSocketService"/> class.
/// </typeparam>
public void AddService<T>(string absPath)
public void AddWebSocketService<T>(string absPath)
where T : WebSocketService, new()
{
string msg;