Soap.InvokeRegistry.THeaderList.Headers

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  Headers[Index: Integer]: TObject read GetHeader; default;

C++

__property System::TObject* Headers[int Index] = {read=GetHeader/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry THeaderList

Description

Lists the headers.

Use Headers to access headers in the list. Headers is a zero-based array of TSOAPHeader descendants. The first header is indexed as 0, the second header is indexed as 1, and so on. You can read the value at a specific index or use Headers with the Count property to iterate through the list.

Note: In Delphi, Headers is the default property of THeaderList. This means you can omit the property name.In C++, you can use the subscript operator to achieve a similar effect.

See Also