Soap.InvokeRegistry.TInvokableClassRegistry.GetResponseHeaderInfoForInterface

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetResponseHeaderInfoForInterface(Info: PTypeInfo): THeaderItemArray;

C++

THeaderItemArray __fastcall GetResponseHeaderInfoForInterface(System::Typinfo::PTypeInfo Info);

Properties

Type Visibility Source Unit Parent
function public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TInvokableClassRegistry

Description

Retrieves an array of headers that are registered as associated with responses to invocations of an invokable interface.

Typically, applications do not need to call GetResponseHeaderInfoForInterface. This method is used internally by the WSDL publisher to generate the WSDL that describes the headers that are used in response messages that return the results of executing a method on an invokable interface.

Info is the runtime type information (RTTI) from a registered invokable interface. The interface must have been previously registered by a call to the RegisterInterface method.

GetResponseHeaderInfoForInterface returns an array of IntfHeaderItem values, each of which describes a header that was registered for response messages on the invokable interface by a call to the RegisterHeaderClass method.

See Also