[Modify] Remove it

This commit is contained in:
sta 2018-11-03 21:36:11 +09:00
parent bbc0bd486c
commit 03f10fff42

View File

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