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