コード例 #1
0
ファイル: HttpUtility.cs プロジェクト: rsumner31/corefx2
 public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count) => HttpEncoder.UrlDecode(bytes, offset, count);
コード例 #2
0
ファイル: HttpUtility.cs プロジェクト: rsumner31/corefx2
 public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e) =>
 HttpEncoder.UrlDecode(bytes, offset, count, e);
コード例 #3
0
 public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count)
 {
     return(HttpEncoder.UrlDecode(bytes, offset, count));
 }
コード例 #4
0
ファイル: HttpUtility.cs プロジェクト: rsumner31/corefx2
 public static string UrlDecode(string str, Encoding e) => HttpEncoder.UrlDecode(str, e);
コード例 #5
0
 public static string UrlDecode(string str, Encoding e)
 {
     return(HttpEncoder.UrlDecode(str, e));
 }