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