UrlTokenDecode() public static method

public static UrlTokenDecode ( string input ) : byte[]
input string
return byte[]
Exemplo n.º 1
0
 /// <summary>
 /// Creates a URL value.
 /// </summary>
 public static byte[] DecodeUriTokenBytes(string input)
 {
     return(HttpServerUtility.UrlTokenDecode(input));
 }
 public override byte[] UrlTokenDecode(string input)
 {
     return(HttpServerUtility.UrlTokenDecode(input));
 }