SoapExtensionAttribute.ExtensionType Свойство

Определение

При переопределении в производном классе получает тип Type расширения SOAP.

public:
 abstract property Type ^ ExtensionType { Type ^ get(); };
public abstract Type ExtensionType { get; }
member this.ExtensionType : Type
Public MustOverride ReadOnly Property ExtensionType As Type

Значение свойства

Type

Тип Type расширения SOAP.

Примеры

В следующем примере кода показана типичная реализация ExtensionType свойства.

// Return the type of TraceExtension.
property Type^ ExtensionType 
{
   Type^ get()
   {
      return typeid<TraceExtension^>;
   }
}
// Return the type of TraceExtension.
public override Type ExtensionType
{
   get
   {
      return typeof(TraceExtension);
   }
}
' Return the type of TraceExtension.
 Public Overrides ReadOnly Property ExtensionType() As Type
     Get
         Return GetType(TraceExtension)
     End Get
 End Property

Комментарии

Производные классы должны переопределять ExtensionType свойство, чтобы возвращать тип расширения SOAP.

Применяется к