[Modify] Edit it
This commit is contained in:
parent
3579355221
commit
3f229f25a4
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user