DEXTUpload.NET
Class FileElementList
- The minimum supported version
- 5.0.0.0
- The minimum support environment
- .NET Framework 4.0
- Explanation
-
The "FileElementList" is a collection that maintains a list of "DEXTUpload.NET.FileElement" objects.
Multiple form elements can be transmitted with the same name in a request through HTTP POST, so the "FileElementList" class is used to handle those elements with one form name(key).
Note) The "FileElementList" class is impossible to be created as an instance directly by user.
Implemented Interfaces
- Type
-
public class FileElementList : List<FileElement>, IFileManagement
- Properties
-
Key
-
Gets or sets the field name of the form.
The field name of the form in the multi-part data is the key value of "FileElementList" object. Therefore, the key value equals the value of the "Name" property of the registered "DEXTUpload.NET.FileElement" object in the "FileElementList" collection.
-
Type
public string Key { get; set; }
Item
-
Gets or sets the "DEXTUpload.NET.FileElement" object that be indicated the specified index.
-
Type
public new FileElement this[int index]
-
Parameters
Name Type Explanation index System.Int32 The zero-based index.
Refers to the "IsEmpty" attribute of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "IsEligibleFile" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "MimeType" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "FullName" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "FileName" property of the "DEXTUpload.NET.IFileManagement the" interface.
Refers to the "FileNameWithoutExt" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "FileExtension" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "FileLength" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "OriginalFileLength" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "IsFiltered" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "IsImage" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "ImageFormat" attribute of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "ImageWidth" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "ImageHeight" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "TempFilePath" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "LastSavedFilePath" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "LastSavedFileName" property of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "IsKeeping" property of the "DEXTUpload.NET.IFileManagement" interface.
-
- Methods
-
Refers to the "Save" method of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "SaveAs" method of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "Keep" methods of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "DeleteTempFile" methods of the "DEXTUpload.NET.IFileManagement" interface.
Refers to the "ReadText" methods of the "DEXTUpload.NET.IFileManagement" interface.