|
|
|
@ -699,14 +699,18 @@ namespace WebSocketSharp.Net
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the specified response <paramref name="header"/> in the collection.
|
|
|
|
/// Gets or sets the specified response header in the collection.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <value>
|
|
|
|
/// <value>
|
|
|
|
/// A <see cref="string"/> that represents the value of the response <paramref name="header"/>.
|
|
|
|
/// A <see cref="string"/> that represents the value of the response header.
|
|
|
|
/// </value>
|
|
|
|
/// </value>
|
|
|
|
/// <param name="header">
|
|
|
|
/// <param name="header">
|
|
|
|
/// One of the <see cref="HttpResponseHeader"/> enum values, represents
|
|
|
|
/// <para>
|
|
|
|
/// the response header to get or set.
|
|
|
|
/// One of the <see cref="HttpResponseHeader"/> enum values.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
|
|
|
|
/// <para>
|
|
|
|
|
|
|
|
/// It represents the response header to get or set.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
/// <exception cref="ArgumentException">
|
|
|
|
/// <exception cref="ArgumentException">
|
|
|
|
/// <para>
|
|
|
|
/// <para>
|
|
|
|
@ -716,15 +720,15 @@ namespace WebSocketSharp.Net
|
|
|
|
/// -or-
|
|
|
|
/// -or-
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// <para>
|
|
|
|
/// <para>
|
|
|
|
/// <paramref name="value"/> contains invalid characters.
|
|
|
|
/// <paramref name="value"/> contains an invalid character.
|
|
|
|
/// </para>
|
|
|
|
/// </para>
|
|
|
|
/// </exception>
|
|
|
|
/// </exception>
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException">
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException">
|
|
|
|
/// The length of <paramref name="value"/> is greater than 65,535 characters.
|
|
|
|
/// The length of <paramref name="value"/> is greater than 65,535 characters.
|
|
|
|
/// </exception>
|
|
|
|
/// </exception>
|
|
|
|
/// <exception cref="InvalidOperationException">
|
|
|
|
/// <exception cref="InvalidOperationException">
|
|
|
|
/// The current <see cref="WebHeaderCollection"/> instance doesn't allow
|
|
|
|
/// The current <see cref="WebHeaderCollection"/> instance does not allow
|
|
|
|
/// the response <paramref name="header"/>.
|
|
|
|
/// the response header.
|
|
|
|
/// </exception>
|
|
|
|
/// </exception>
|
|
|
|
public string this[HttpResponseHeader header] {
|
|
|
|
public string this[HttpResponseHeader header] {
|
|
|
|
get {
|
|
|
|
get {
|
|
|
|
|