Soap.SOAPDomConv.TDOMHeaderProcessorEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDOMHeaderProcessorEntry = record
    Processor: IDOMHeaderProcessor;
{$IFDEF NEXTGEN}
    NameSpace: string;
    HeaderName: string;
    TypeName: string;
{$ELSE !NEXTGEN}
    NameSpace: WideString;
    HeaderName: WideString;
    TypeName: WideString;
{$ENDIF NEXTGEN}
  end;

C++

struct DECLSPEC_DRECORD TDOMHeaderProcessorEntry
{
public:
    _di_IDOMHeaderProcessor Processor;
    System::WideString NameSpace;
    System::WideString HeaderName;
    System::WideString TypeName;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Soap.SOAPDomConv.pas
Soap.SOAPDomConv.hpp
Soap.SOAPDomConv Soap.SOAPDomConv

Description

TDOMHeaderProcessorEntry describes a SOAP Header processor.

The TDOMHeaderProcessorEntry record is used in the TSOAPDOMProcessor class to manage a list of SOAP header processors. The following table lists all the fields and their descriptions.



Field Description

Processor

The interface for a helper object that creates or interprets SOAP headers that match NameSpace, HeaderName, and TypeName.

NameSpace

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

HeaderName

The name of the SOAP header that the processor handles.

TypeName

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



See Also