public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) => HttpEncoder.UrlDecode(bytes, offset, count);
public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e) => HttpEncoder.UrlDecode(bytes, offset, count, e);
public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) { return(HttpEncoder.UrlDecode(bytes, offset, count)); }
public static string UrlDecode(string str, Encoding e) => HttpEncoder.UrlDecode(str, e);
public static string UrlDecode(string str, Encoding e) { return(HttpEncoder.UrlDecode(str, e)); }