[Modify] Edit it

This commit is contained in:
sta 2017-02-09 16:04:27 +09:00
parent 47dfbe62df
commit b20f6d8c9c

View File

@ -593,18 +593,21 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Tries to get the WebSocket service host with the specified <paramref name="path"/>. /// Tries to get the WebSocket service host with
/// the specified <paramref name="path"/>.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <c>true</c> if the service is successfully found; otherwise, <c>false</c>. /// <c>true</c> if the service is successfully found;
/// otherwise, <c>false</c>.
/// </returns> /// </returns>
/// <param name="path"> /// <param name="path">
/// A <see cref="string"/> that represents the absolute path to the service to find. /// A <see cref="string"/> that represents the absolute path to
/// the service to find.
/// </param> /// </param>
/// <param name="host"> /// <param name="host">
/// When this method returns, a <see cref="WebSocketServiceHost"/> instance that /// When this method returns, a <see cref="WebSocketServiceHost"/>
/// provides the access to the information in the service, or <see langword="null"/> /// instance that provides the access to the information in
/// if it's not found. This parameter is passed uninitialized. /// the service or <see langword="null"/> if it is not found.
/// </param> /// </param>
public bool TryGetServiceHost (string path, out WebSocketServiceHost host) public bool TryGetServiceHost (string path, out WebSocketServiceHost host)
{ {