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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









SoapExtensionAttribute

System.Web.Services.Protocols (system.web.services.dll)abstract class

When using a SoapExtension, you must also derive a
custom SoapExtensionAttribute. This attribute is
used to "connect" methods in your
web service or proxy class to the corresponding extension.

When creating a custom SoapExtensionAttribute, you
need to override the ExtensionType property so
that it returns the type of your custom
SoapExtension class. You can then use your custom
attribute to mark methods in your web service or proxy class. ASP.NET
will automatically use the specified SoapExtension
when the associated method is invoked.

public abstract class 

SoapExtensionAttribute : Attribute {
// Protected Constructors
protected

SoapExtensionAttribute ( );
// Public Instance Properties
public abstract Type

ExtensionType {get; }
public abstract int

Priority {set; get; }
}



Hierarchy


System.Object
System.Attribute
SoapExtensionAttribute

Passed To


SoapExtension.GetInitializer( )

Valid On


All


    / 873