SoapExtensionAttribute.ExtensionType Property (System.Web.Services.Protocols)

Switch View :
ScriptFree
.NET Framework Class Library
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)
Syntax

Visual Basic
Public MustOverride ReadOnly Property ExtensionType As Type
	Get
C#
public abstract Type ExtensionType { get; }
Visual C++
public:
virtual property Type^ ExtensionType {
	Type^ get () abstract;
}
F#
abstract ExtensionType : Type

Property Value

Type: System.Type
The Type of the SOAP extension.
Remarks

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

Examples

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

Visual Basic

' Return the type of TraceExtension.
 Public Overrides ReadOnly Property ExtensionType() As Type
     Get
         Return GetType(TraceExtension)
     End Get
 End Property


C#

// Return the type of TraceExtension.
public override Type ExtensionType
{
   get
   {
      return typeof(TraceExtension);
   }
}


Visual C++

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


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference