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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









ClientTargetSectionHandler

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

ASP.NET delegates the processing of web.config
data to configuration section handlers. Section handlers are declared
in the web.config file using
"add" directives inside the
<configsections> element. Each element
identifies a specific section of configuration data, and the
associated
System.Configuration.IConfigurationSectionHandler
class that is used to process it. By inheriting from this class, you
could create your own custom section handler. Note that you do not
need to create your own custom section handler just to add
application-specific constants to your
web.config file; these constants can be added to
the <appSettings> section and retrieved
through the
System.Configuration.ConfigurationSettings class.

sealed class 

ClientTargetSectionHandler : System.Configuration.IConfigurationSectionHandler {
// Public Instance Methods
public object

Create (object

parent , object

configContextObj ,
System.Xml.XmlNode

section );// implements System.Configuration.IConfigurationSectionHandler
}




/ 873