[Modify] Edit it
This commit is contained in:
parent
3579355221
commit
3f229f25a4
@ -107,18 +107,35 @@ namespace WebSocketSharp.Net
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="Cookie"/> class with the specified
|
/// Initializes a new instance of the <see cref="Cookie"/> class with
|
||||||
/// <paramref name="name"/> and <paramref name="value"/>.
|
/// the specified name and value.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name">
|
/// <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>
|
||||||
/// <param name="value">
|
/// <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>
|
||||||
/// <exception cref="CookieException">
|
/// <exception cref="ArgumentNullException">
|
||||||
/// <para>
|
/// <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>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// - or -
|
/// - or -
|
||||||
@ -130,13 +147,7 @@ namespace WebSocketSharp.Net
|
|||||||
/// - or -
|
/// - or -
|
||||||
/// </para>
|
/// </para>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// <paramref name="value"/> is <see langword="null"/>.
|
/// <paramref name="value"/> is a string not enclosed in double quotes
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// - or -
|
|
||||||
/// </para>
|
|
||||||
/// <para>
|
|
||||||
/// <paramref name="value"/> contains a string not enclosed in double quotes
|
|
||||||
/// that contains an invalid character.
|
/// that contains an invalid character.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </exception>
|
/// </exception>
|
||||||
|
Loading…
Reference in New Issue
Block a user