C# 클래스 RenRen.Plurk.HttpUtility

Contains helper HTTP methods not available in System.Net namespace.
파일 보기 프로젝트 열기: rschiang/rsPlurkLib

공개 메소드들

메소드 설명
ParseQueryString ( String s ) : NameValueCollection

Parse an encoded query string using UTF8 encoding.

ParseQueryString ( String s, bool urlencoded, Encoding encoding ) : NameValueCollection

Parse a query string into a NameValueCollection using specified encoding settings.

UrlDecode ( string s ) : string

Decode an URL transmission-encoded string into its original representation using UTF8 encoding.

UrlDecode ( string s, Encoding encoding ) : string

Decode an URL transmission-encoded string into its original representation using specified encoding.

비공개 메소드들

메소드 설명
HexToInt ( char h ) : int

Convert a hex character to its integer representation,

메소드 상세

ParseQueryString() 공개 정적인 메소드

Parse an encoded query string using UTF8 encoding.
public static ParseQueryString ( String s ) : NameValueCollection
s String The query string to parse.
리턴 System.Collections.Specialized.NameValueCollection

ParseQueryString() 공개 정적인 메소드

Parse a query string into a NameValueCollection using specified encoding settings.
public static ParseQueryString ( String s, bool urlencoded, Encoding encoding ) : NameValueCollection
s String The query string to parse.
urlencoded bool Whether query string keys and values are URL encoded.
encoding System.Text.Encoding The encoding to use.
리턴 System.Collections.Specialized.NameValueCollection

UrlDecode() 공개 정적인 메소드

Decode an URL transmission-encoded string into its original representation using UTF8 encoding.
public static UrlDecode ( string s ) : string
s string The string to decode.
리턴 string

UrlDecode() 공개 정적인 메소드

Decode an URL transmission-encoded string into its original representation using specified encoding.
public static UrlDecode ( string s, Encoding encoding ) : string
s string The string to decode.
encoding System.Text.Encoding The encoding to use.
리턴 string