Show: Delphi
C++
Display Preferences
AdaptReq.TAdapterRequestParamsImpl.ParamValues
From XE2 API Documentation
Delphi
property ParamValues[I: Integer]: string read GetParamValue;
C++
__property System::UnicodeString ParamValues[int I] = {read=GetParamValue};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | protected | AdaptReq.pas AdaptReq.hpp |
AdaptReq | TAdapterRequestParamsImpl |
Description
Lists the values of the name/value pairs that can be accessed using the TAdapterRequestParamsImpl object.
Read ParamValues to access the value of a name/value pair, given its position.
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.
Tip: Use the ParamNames property to determine the name associated with a specified index.
Use ParamValues when iterating over all the name/value pairs in the request. To obtain the value for a specific name, use the ValueOfParam method instead.