Function CSPUploadFileGroup::operator []()
Description:
Retrieves by index a file posted by the client.
 |
Prototype:
const CSPUploadFile& operator [](unsigned long ulIndex) const;
Arguments:
- unsigned long ulIndex [IN]
The index of the file to be retrieved.
Return value:
Returns a reference to a CSPUploadFile
Remarks:
Same as GetFile()
Examples:
CSPBuffer FileData = Request.Form.Files( "file1" )( 0 ).Data;
See also:
member functions GetCount(), GetFile()
|
|