C# 클래스 Temp.UriQueryUtility

Helpers for encoding, decoding, and parsing URI query components.
파일 보기 프로젝트 열기: anurse/ReviewR

공개 메소드들

메소드 설명
UrlDecode ( string str ) : string
UrlDecodeToBytes ( byte bytes, int offset, int count ) : byte[]
UrlEncode ( string str ) : string
UrlEncodeToBytes ( byte bytes, int offset, int count ) : byte[]

비공개 메소드들

메소드 설명
HexToInt ( char h ) : int
IntToHex ( int n ) : char
IsUrlSafeChar ( char ch ) : bool
UrlDecodeInternal ( byte bytes, int offset, int count ) : byte[]
UrlDecodeInternal ( string value, Encoding encoding ) : string
UrlEncode ( byte bytes, int offset, int count ) : byte[]
UrlEncode ( byte bytes, int offset, int count, bool alwaysCreateNewReturnValue ) : byte[]
ValidateUrlEncodingParameters ( byte bytes, int offset, int count ) : bool

메소드 상세

UrlDecode() 공개 정적인 메소드

public static UrlDecode ( string str ) : string
str string
리턴 string

UrlDecodeToBytes() 공개 정적인 메소드

public static UrlDecodeToBytes ( byte bytes, int offset, int count ) : byte[]
bytes byte
offset int
count int
리턴 byte[]

UrlEncode() 공개 정적인 메소드

public static UrlEncode ( string str ) : string
str string
리턴 string

UrlEncodeToBytes() 공개 정적인 메소드

public static UrlEncodeToBytes ( byte bytes, int offset, int count ) : byte[]
bytes byte
offset int
count int
리턴 byte[]