C# Class Rhino.Queues.Utils.MonoHttpUtility

We have to use this stupid trick because HttpUtility.UrlEncode / Decode uses HttpContext.Current under the covers, which doesn't work in IIS7 Application_Start
Mostra file Open project: hibernating-rhinos/rhino-queues

Public Methods

Method Description
UrlDecode ( byte bytes, Encoding e ) : string
UrlDecode ( byte bytes, int offset, int count, Encoding e ) : string
UrlDecode ( string str ) : string
UrlDecode ( string s, Encoding e ) : string
UrlDecodeToBytes ( byte bytes ) : byte[]
UrlDecodeToBytes ( byte bytes, int offset, int count ) : byte[]
UrlDecodeToBytes ( string str ) : byte[]
UrlDecodeToBytes ( string str, Encoding e ) : byte[]
UrlEncode ( byte bytes ) : string
UrlEncode ( byte bytes, int offset, int count ) : string
UrlEncode ( string str ) : string
UrlEncode ( string s, Encoding Enc ) : string
UrlEncodeToBytes ( byte bytes ) : byte[]
UrlEncodeToBytes ( byte bytes, int offset, int count ) : byte[]
UrlEncodeToBytes ( string str ) : byte[]
UrlEncodeToBytes ( string str, Encoding e ) : byte[]
UrlEncodeUnicode ( string str ) : string
UrlEncodeUnicodeToBytes ( string str ) : byte[]

Private Methods

Method Description
GetChar ( byte bytes, int offset, int length ) : int
GetChar ( string str, int offset, int length ) : int
GetChars ( MemoryStream b, Encoding e ) : char[]
GetInt ( byte b ) : int
WriteCharBytes ( IList buf, char ch, Encoding e ) : void

Method Details

UrlDecode() public static method

public static UrlDecode ( byte bytes, Encoding e ) : string
bytes byte
e System.Text.Encoding
return string

UrlDecode() public static method

public static UrlDecode ( byte bytes, int offset, int count, Encoding e ) : string
bytes byte
offset int
count int
e System.Text.Encoding
return string

UrlDecode() public static method

public static UrlDecode ( string str ) : string
str string
return string

UrlDecode() public static method

public static UrlDecode ( string s, Encoding e ) : string
s string
e System.Text.Encoding
return string

UrlDecodeToBytes() public static method

public static UrlDecodeToBytes ( byte bytes ) : byte[]
bytes byte
return byte[]

UrlDecodeToBytes() public static method

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

UrlDecodeToBytes() public static method

public static UrlDecodeToBytes ( string str ) : byte[]
str string
return byte[]

UrlDecodeToBytes() public static method

public static UrlDecodeToBytes ( string str, Encoding e ) : byte[]
str string
e System.Text.Encoding
return byte[]

UrlEncode() public static method

public static UrlEncode ( byte bytes ) : string
bytes byte
return string

UrlEncode() public static method

public static UrlEncode ( byte bytes, int offset, int count ) : string
bytes byte
offset int
count int
return string

UrlEncode() public static method

public static UrlEncode ( string str ) : string
str string
return string

UrlEncode() public static method

public static UrlEncode ( string s, Encoding Enc ) : string
s string
Enc System.Text.Encoding
return string

UrlEncodeToBytes() public static method

public static UrlEncodeToBytes ( byte bytes ) : byte[]
bytes byte
return byte[]

UrlEncodeToBytes() public static method

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

UrlEncodeToBytes() public static method

public static UrlEncodeToBytes ( string str ) : byte[]
str string
return byte[]

UrlEncodeToBytes() public static method

public static UrlEncodeToBytes ( string str, Encoding e ) : byte[]
str string
e System.Text.Encoding
return byte[]

UrlEncodeUnicode() public static method

public static UrlEncodeUnicode ( string str ) : string
str string
return string

UrlEncodeUnicodeToBytes() public static method

public static UrlEncodeUnicodeToBytes ( string str ) : byte[]
str string
return byte[]