SoapExtensionImporter Class

Definition

Provides a common interface and functionality for classes to generate code attributes that specify SOAP extensions.

public ref class SoapExtensionImporter abstract
public abstract class SoapExtensionImporter
type SoapExtensionImporter = class
Public MustInherit Class SoapExtensionImporter
Inheritance
SoapExtensionImporter

Remarks

The SoapExtensionImporter abstract class exposes an abstract method, ImportMethod, which allows a derived class to add metadata to any method that represents an operation in a binding. The method itself is not an input method. The code attributes, which are added to all Web methods in a binding class, represent extensions to the SOAP Web services protocol, for example, for adding extra headers to an outgoing SOAP message or doing extra processing on an incoming SOAP message.

You can use a class derived from SoapExtensionImporter to extend the generation of client proxy code or abstract server code. You can use such a derived class in conjunction with a class derived from the abstract SoapExtension class, which extends run-time processing of SOAP messages on the client or service.

You can specify SoapExtensionImporter in a configuration file through the soapExtensionImporterTypes configuration element and its child add element. You can apply the configuration to:

  • An ASP.NET Web application: service or client.

  • A stand-alone .NET Framework application: client only.

Constructors

SoapExtensionImporter()

Initializes a new instance of the SoapExtensionImporter class.

Properties

ImportContext

Gets or sets the SoapProtocolImporter instance that invokes the ImportMethod(CodeAttributeDeclarationCollection) method.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
ImportMethod(CodeAttributeDeclarationCollection)

When overridden in a derived class, adds code attribute declarations to any method that represents an operation in a binding.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also