[Modify] Remove it

This commit is contained in:
sta 2018-11-01 19:37:54 +09:00
parent e1a5aca94a
commit 3a8d1d97c2

View File

@ -1993,23 +1993,6 @@ namespace WebSocketSharp
: value;
}
/// <summary>
/// URL-encodes the specified <see cref="string"/>.
/// </summary>
/// <returns>
/// A <see cref="string"/> that receives the encoded string or
/// <paramref name="value"/> if it is <see langword="null"/> or empty.
/// </returns>
/// <param name="value">
/// A <see cref="string"/> to encode.
/// </param>
public static string UrlEncode (this string value)
{
return value != null && value.Length > 0
? HttpUtility.UrlEncode (value)
: value;
}
/// <summary>
/// Writes and sends the specified <paramref name="content"/> data with the specified
/// <see cref="HttpListenerResponse"/>.