Fix a few for WebHeaderCollection.cs

This commit is contained in:
sta 2014-05-23 19:25:17 +09:00
parent 0b8349869d
commit 5e1539c660

View File

@ -632,7 +632,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 request /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the request
@ -670,7 +670,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 response /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the response
@ -784,7 +784,7 @@ namespace WebSocketSharp.Net
value = value.Trim (); value = value.Trim ();
if (value.Length > 65535) if (value.Length > 65535)
throw new ArgumentOutOfRangeException ("value", "The length is greater than 65535."); throw new ArgumentOutOfRangeException ("value", "Greater than 65,535 characters.");
if (!IsHeaderValue (value)) if (!IsHeaderValue (value))
throw new ArgumentException ("Contains invalid characters.", "value"); throw new ArgumentException ("Contains invalid characters.", "value");
@ -943,7 +943,7 @@ namespace WebSocketSharp.Net
/// <paramref name="headerName"/> or <paramref name="headerValue"/> contains invalid characters. /// <paramref name="headerName"/> or <paramref name="headerValue"/> contains invalid characters.
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="headerValue"/> is greater than 65535. /// The length of <paramref name="headerValue"/> 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 doesn't allow
@ -987,7 +987,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of the value part of <paramref name="header"/> is greater than 65535. /// The length of the value part of <paramref name="header"/> 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 doesn't allow
@ -1025,7 +1025,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 request /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the request
@ -1059,7 +1059,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 response /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the response
@ -1095,7 +1095,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 header /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the header
@ -1391,7 +1391,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 request /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the request
@ -1424,7 +1424,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 response /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the response
@ -1459,7 +1459,7 @@ namespace WebSocketSharp.Net
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">
/// The length of <paramref name="value"/> is greater than 65535. /// 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 header /// The current <see cref="WebHeaderCollection"/> instance doesn't allow the header