UrlTokenDecode() 공개 정적인 메소드

public static UrlTokenDecode ( string input ) : byte[]
input string
리턴 byte[]
예제 #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));
 }