Function CSPUploadFileGroup::GetFile()
Description:
Retrieves by index a file posted by the client.
 |
Prototype:
const CSPUploadFile& GetFile(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 operator []
Examples:
CSPBuffer FileData = Request.Form.Files.GetGroup( "file1" ).GetFile( 0 ).Data;
See also:
member functions GetCount(), operator[]
|
|