ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









HttpUtility

System.Web (system.web.dll)sealed class

This class provides static (shared) helper methods. The
UrlEncode( ) and UrlDecode( )
methods are the same as those provided by the
HttpServerUtility class for encoding a string into
a format that's safe for use in a URL. Additionally,
a UrlEncodeToBytes( ) method is provided to
convert a string into an array of bytes and a
UrlEncodeUnicode( ) method to convert a string
into a Unicode string.

public sealed class 

HttpUtility {
// Public Constructors
public

HttpUtility ( );
// Public Static Methods
public static string

HtmlAttributeEncode (string

s );
public static void

HtmlAttributeEncode (string

s , System.IO.TextWriter

output );
public static string

HtmlDecode (string

s );
public static void

HtmlDecode (string

s , System.IO.TextWriter

output );
public static string

HtmlEncode (string

s );
public static void

HtmlEncode (string

s , System.IO.TextWriter

output );
public static string

UrlDecode (byte[ ]

bytes , System.Text.Encoding

e );
public static string

UrlDecode (byte[ ]

bytes , int

offset , int

count , System.Text.Encoding

e );
public static string

UrlDecode (string

str );
public static string

UrlDecode (string

str , System.Text.Encoding

e );
public static byte[ ]

UrlDecodeToBytes (byte[ ]

bytes );
public static byte[ ]

UrlDecodeToBytes (byte[ ]

bytes , int

offset , int

count );
public static byte[ ]

UrlDecodeToBytes (string

str );
public static byte[ ]

UrlDecodeToBytes (string

str , System.Text.Encoding

e );
public static string

UrlEncode (byte[ ]

bytes );
public static string

UrlEncode (byte[ ]

bytes , int

offset , int

count );
public static string

UrlEncode (string

str );
public static string

UrlEncode (string

str , System.Text.Encoding

e );
public static byte[ ]

UrlEncodeToBytes (byte[ ]

bytes );
public static byte[ ]

UrlEncodeToBytes (byte[ ]

bytes , int

offset , int

count );
public static byte[ ]

UrlEncodeToBytes (string

str );
public static byte[ ]

UrlEncodeToBytes (string

str , System.Text.Encoding

e );
public static string

UrlEncodeUnicode (string

str );
public static byte[ ]

UrlEncodeUnicodeToBytes (string

str );
public static string

UrlPathEncode (string

str );
}




/ 873