[Modify] Edit it

This commit is contained in:
sta 2020-04-13 21:51:16 +09:00
parent 86cad7d93a
commit 46dbef2f05

View File

@ -1486,18 +1486,21 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Removes the specified request <paramref name="header"/> from the collection. /// Removes the specified request header from the collection.
/// </summary> /// </summary>
/// <param name="header"> /// <param name="header">
/// One of the <see cref="HttpRequestHeader"/> enum values, represents /// <para>
/// the request header to remove. /// One of the <see cref="HttpRequestHeader"/> enum values.
/// </para>
/// <para>
/// It specifies the request header to remove.
/// </para>
/// </param> /// </param>
/// <exception cref="ArgumentException"> /// <exception cref="ArgumentException">
/// <paramref name="header"/> is a restricted header. /// <paramref name="header"/> is a restricted header.
/// </exception> /// </exception>
/// <exception cref="InvalidOperationException"> /// <exception cref="InvalidOperationException">
/// The current <see cref="WebHeaderCollection"/> instance doesn't allow /// This instance does not allow the request header.
/// the request <paramref name="header"/>.
/// </exception> /// </exception>
public void Remove (HttpRequestHeader header) public void Remove (HttpRequestHeader header)
{ {