Show: Delphi
C++
Display Preferences
AdaptReq.TAdapterRequestParamsImpl.ParamNames
From XE2 API Documentation
Delphi
property ParamNames[I: Integer]: string read GetParamName;
C++
__property System::UnicodeString ParamNames[int I] = {read=GetParamName};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | protected | AdaptReq.pas AdaptReq.hpp |
AdaptReq | TAdapterRequestParamsImpl |
Description
Lists the names of the name/value pairs that can be accessed using the TAdapterRequestParamsImpl object.
Read ParamNames to obtain the name parts of the name/value pairs you can extract from the current HTTP request.
I is the index of the name/value pair, where 0 indicates the first pair, 1 indicates the second pair, and so on. The ParamCount property provides an upper bound for this index.
Use ParamNames when iterating over all the name/value pairs in the request. To obtain the value of a specified parameter, given its name, use the ValueOfParam method.