[Modify] Edit it

This commit is contained in:
sta 2017-08-18 15:02:35 +09:00
parent 9006e01c2f
commit 669e1ca821

View File

@ -151,21 +151,20 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Gets the session instance with the specified <paramref name="id"/>. /// Gets the session instance with <paramref name="id"/>.
/// </summary> /// </summary>
/// <value> /// <value>
/// <para> /// <para>
/// A <see cref="IWebSocketSession"/> instance or /// A <see cref="IWebSocketSession"/> instance or <see langword="null"/>
/// <see langword="null"/> if not found. /// if not found.
/// </para> /// </para>
/// <para> /// <para>
/// That session instance provides the function to /// The session instance provides the function to access the information
/// access the information in the session. /// in the session.
/// </para> /// </para>
/// </value> /// </value>
/// <param name="id"> /// <param name="id">
/// A <see cref="string"/> that represents the ID of /// A <see cref="string"/> that represents the ID of the session to find.
/// the session to find.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="id"/> is <see langword="null"/>. /// <paramref name="id"/> is <see langword="null"/>.