[Modify] Edit it

This commit is contained in:
sta 2019-03-08 21:56:55 +09:00
parent 1bbc9090b7
commit 73c3c738b3

View File

@ -157,21 +157,39 @@ namespace WebSocketSharp.Net
}
/// <summary>
/// Initializes a new instance of the <see cref="Cookie"/> class with the specified
/// <paramref name="name"/>, <paramref name="value"/>, and <paramref name="path"/>.
/// Initializes a new instance of the <see cref="Cookie"/> class with
/// the specified name, value, and path.
/// </summary>
/// <param name="name">
/// A <see cref="string"/> that represents the Name of the cookie.
/// A <see cref="string"/> that specifies the Name of the cookie.
/// </param>
/// <param name="value">
/// A <see cref="string"/> that represents the Value of the cookie.
/// A <see cref="string"/> that specifies the Value of the cookie.
/// </param>
/// <param name="path">
/// A <see cref="string"/> that represents the value of the Path attribute of the cookie.
/// A <see cref="string"/> that specifies the value of the Path
/// attribute of the cookie.
/// </param>
/// <exception cref="CookieException">
/// <exception cref="ArgumentNullException">
/// <para>
/// <paramref name="name"/> is <see langword="null"/> or empty.
/// <paramref name="name"/> is <see langword="null"/>.
/// </para>
/// <para>
/// - or -
/// </para>
/// <para>
/// <paramref name="value"/> is <see langword="null"/>.
/// </para>
/// </exception>
/// <exception cref="ArgumentException">
/// <para>
/// <paramref name="name"/> is an empty string.
/// </para>
/// <para>
/// - or -
/// </para>
/// <para>
/// <paramref name="name"/> starts with a dollar sign.
/// </para>
/// <para>
/// - or -
@ -183,13 +201,7 @@ namespace WebSocketSharp.Net
/// - or -
/// </para>
/// <para>
/// <paramref name="value"/> is <see langword="null"/>.
/// </para>
/// <para>
/// - or -
/// </para>
/// <para>
/// <paramref name="value"/> contains a string not enclosed in double quotes
/// <paramref name="value"/> is a string not enclosed in double quotes
/// that contains an invalid character.
/// </para>
/// </exception>