[Modify] Edit it

This commit is contained in:
sta 2019-03-07 21:27:43 +09:00
parent 3579355221
commit 3f229f25a4

View File

@ -107,18 +107,35 @@ namespace WebSocketSharp.Net
}
/// <summary>
/// Initializes a new instance of the <see cref="Cookie"/> class with the specified
/// <paramref name="name"/> and <paramref name="value"/>.
/// Initializes a new instance of the <see cref="Cookie"/> class with
/// the specified name and value.
/// </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>
/// <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 -
@ -130,13 +147,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>