Show: Delphi
C++
Display Preferences
AdaptReq.IActionFieldValue.Files
From XE2 API Documentation
Delphi
property Files[I: Integer]: TAbstractWebRequestFile read GetFile;
C++
__property Web::Httpapp::TAbstractWebRequestFile* Files[int I] = {read=GetFile};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | public | AdaptReq.pas AdaptReq.hpp |
AdaptReq | IActionFieldValue |
Description
Lists the file references that make up this adapter field's value.
Read Files to access the content of a file that is the value of the adapter field. Files is an array of TAbstractWebRequestFile objects, where each object describes the content of a file and provides a stream from which to read the file's value.
I is the index of a file, where 0 indicates the first file, 1 indicates the second file, and so on. The FileCount property provides an upper bound on the value of I.
Note: If Files lists more than one file, the first file is the selected value of the adapter field (the one assigned to the field). Additional files indicate the other possible field values.