Soap.SOAPDomConv.TSOAPDOMProcessor.AddHeaderProcessor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AddHeaderProcessor(Namespace, HeaderName, TypeName: WideString; Processor: IDOMHeaderProcessor); virtual;

C++

virtual void __fastcall AddHeaderProcessor(System::WideString Namespace, System::WideString HeaderName, System::WideString TypeName, _di_IDOMHeaderProcessor Processor);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.SOAPDomConv.pas
Soap.SOAPDomConv.hpp
Soap.SOAPDomConv TSOAPDOMProcessor

Description

Adds a processor to the internal list of interfaces to use for interpreting and creating SOAP headers.

AddHeaderProcessor stores a specified processor interface and the information necessary to identify the SOAP headers that it handles.

Namespace is the namespace URI in which the SOAP header identified by HeaderName is defined.

HeaderName is the name of the SOAP header that the processor handles.

TypeName is the name of the type that is used for the value of the header.

Processor is the interface for a helper object that creates or interprets SOAP headers that match Namespace, HeaderName, and TypeName.

Note: AddHeaderProcessor is supplied for backward compatibility. Headers are handled differently, using lists of TSOAPHeader descendants that are supplied as parameters to methods in descendant classes.

See Also