[Modify] Edit it
This commit is contained in:
parent
04249925c1
commit
15e723ed99
@ -196,25 +196,43 @@ 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"/>, <paramref name="value"/>, <paramref name="path"/>, and
|
/// the specified name, value, path, and domain.
|
||||||
/// <paramref name="domain"/>.
|
|
||||||
/// </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>
|
||||||
/// <param name="path">
|
/// <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>
|
/// </param>
|
||||||
/// <param name="domain">
|
/// <param name="domain">
|
||||||
/// A <see cref="string"/> that represents the value of the Domain attribute of the cookie.
|
/// A <see cref="string"/> that specifies the value of the Domain
|
||||||
|
/// attribute 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 -
|
||||||
@ -226,13 +244,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