[Modify] Edit it

This commit is contained in:
sta 2020-05-15 19:36:53 +09:00
parent b58dc42dc1
commit 43c8b790d5

View File

@ -1595,14 +1595,20 @@ namespace WebSocketSharp.Net
/// Removes the specified header from the collection. /// Removes the specified header from the collection.
/// </summary> /// </summary>
/// <param name="name"> /// <param name="name">
/// A <see cref="string"/> that represents the name of the header to remove. /// A <see cref="string"/> that specifies the name of the header to remove.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="name"/> is <see langword="null"/> or empty. /// <paramref name="name"/> is <see langword="null"/>.
/// </exception> /// </exception>
/// <exception cref="ArgumentException"> /// <exception cref="ArgumentException">
/// <para> /// <para>
/// <paramref name="name"/> contains invalid characters. /// <paramref name="name"/> is an empty string.
/// </para>
/// <para>
/// -or-
/// </para>
/// <para>
/// <paramref name="name"/> contains an invalid character.
/// </para> /// </para>
/// <para> /// <para>
/// -or- /// -or-
@ -1612,8 +1618,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The current <see cref="WebHeaderCollection"/> instance doesn't allow /// This instance does not allow the header.
/// the header <paramref name="name"/>.
/// </exception> /// </exception>
public override void Remove (string name) public override void Remove (string name)
{ {