[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Represents an uploaded file in an HTTP request
Source position: httpdefs.pp line 216
type TUploadedFile = class(TCollectionItem) |
||
public |
||
destructor Destroy; override; |
|
Destroys the uploaded file instance |
property FieldName: string; [rw] |
|
Form field name of the uploaded file |
property FileName: string; [rw] |
|
Original filename of the uploaded file |
|
Stream containing the uploaded file data |
|
|
Size of the uploaded file in bytes |
|
property ContentType: string; [rw] |
|
MIME content type of the uploaded file |
property Disposition: string; [rw] |
|
Content disposition header of the uploaded file |
property LocalFileName: string; [rw] |
|
Local temporary filename where file is stored |
property Description: string; [rw] |
|
Description of the uploaded file |
end; |
|
Represents an uploaded file in an HTTP request |
|
| | | ||
| | | ||
| | | ||
TUploadedFile encapsulates information about a file uploaded through an HTML form using multipart/form-data encoding. It provides access to the file content, metadata, and properties such as filename, size, and content type.