Example #1
0
 public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) => HttpEncoder.UrlDecode(bytes, offset, count);
Example #2
0
 public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e) =>
 HttpEncoder.UrlDecode(bytes, offset, count, e);
Example #3
0
 public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count)
 {
     return(HttpEncoder.UrlDecode(bytes, offset, count));
 }
Example #4
0
 public static string UrlDecode(string str, Encoding e) => HttpEncoder.UrlDecode(str, e);
Example #5
0
 public static string UrlDecode(string str, Encoding e)
 {
     return(HttpEncoder.UrlDecode(str, e));
 }