Soap.SOAPDomConv.TSOAPDOMProcessor.FindHeaderProcessor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  FindHeaderProcessor(Namespace, HeaderName, TypeName: WideString): IDOMHeaderProcessor; virtual;

C++

virtual _di_IDOMHeaderProcessor __fastcall FindHeaderProcessor(System::WideString Namespace, System::WideString HeaderName, System::WideString TypeName);

Properties

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

Description

Locates a processor to interpret or generate a specified SOAP header.

FindHeaderProcessor returns the interface of the helper object that can generate or interpret a specified SOAP header. This processor must be previously added to the TSOAPDOMProcessor object's internal list of processors by a call to the AddHeaderProcessor method.

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.

Note: FindHeaderProcessor 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