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