DEXTUpload.NET
Class FormElement
- The minimum supported version
- 5.0.0.0
- The minimum support environment
- .NET Framework 4.0
- Explanation
-
The "FormElement" is a class that contains a form element information of the multi-part data(multipart/form-data).
Note) It cannot be created using the instance constructor.
Sub-subclasses
- Type
-
public class FormElement
- Properties
-
Name
-
Gets the name of the form element.
It matches a value of the "name" of the "Content-Disposition" header, this name equals to the value of "name" attribute of the <input name="..." /> tag.
-
Type
public string Name { get; }
IsFileElement
-
Gets whether or not the form element is a file element.
By default, it is "false". In the case of "false", it means that the element is of the string rather than the file.
-
Type
public bool IsFileElement { get; }
-