Request.FormData

Data sent through multipart/form-data.

Members

Properties

isFile
bool isFile [@property getter]

Is it a file or is data inlined?

Variables

contentType
string contentType;

Content type

data
char[] data;

Data, if inlined (empty if isFile() == true)

filename
string filename;

We have a file attached. Its name.

name
string name;

Form field name

path
string path;

If we have a file attached, here it is saved.

Meta