HttpMultipartParser::ParameterPart
Represents a single parameter extracted from a multipart/form-data stream. More...
Public Functions
Name | |
---|---|
ParameterPart(string name, string data) Initializes a new instance of the ParameterPart class. |
Public Properties
Name | |
---|---|
string | Data Gets the data. |
string | Name Gets the name. |
Detailed Description
class HttpMultipartParser::ParameterPart;
Represents a single parameter extracted from a multipart/form-data stream.
For our purposes a "parameter" is defined as any non-file data in the multipart/form-data stream.
Public Functions Documentation
function ParameterPart
ParameterPart(
string name,
string data
)
Initializes a new instance of the ParameterPart class.
Parameters:
- name The name.
- data The data.
Public Property Documentation
property Data
string Data;
Gets the data.
property Name
string Name;
Gets the name.