Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SoapExtensionAttribute::ExtensionType Property

 

When overridden in a derived class, gets the Type of the SOAP extension.

Namespace:   System.Web.Services.Protocols
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property Type^ ExtensionType {
	virtual Type^ get() abstract;
}

Property Value

Type: System::Type^

The Type of the SOAP extension.

Derived classes must override the ExtensionType property to return the type of the SOAP extension.

The following code example is a typical implementation of the ExtensionType property.

// Return the type of TraceExtension.
property Type^ ExtensionType 
{
   Type^ get()
   {
      return typeid<TraceExtension^>;
   }
}

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft