DEXTUpload.NET Professional
menu toggleReferences > DEXTUpload.NET > FileElementList

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.

IsEmpty

Refers to the "IsEmpty" attribute of the "DEXTUpload.NET.IFileManagement" interface.

IsEligibleFile

Refers to the "IsEligibleFile" property of the "DEXTUpload.NET.IFileManagement" interface.

MimeType

Refers to the "MimeType" property of the "DEXTUpload.NET.IFileManagement" interface.

FullName

Refers to the "FullName" property of the "DEXTUpload.NET.IFileManagement" interface.

FileName

Refers to the "FileName" property of the "DEXTUpload.NET.IFileManagement the" interface.

FileNameWithoutExt

Refers to the "FileNameWithoutExt" property of the "DEXTUpload.NET.IFileManagement" interface.

FileExtension

Refers to the "FileExtension" property of the "DEXTUpload.NET.IFileManagement" interface.

FileLength

Refers to the "FileLength" property of the "DEXTUpload.NET.IFileManagement" interface.

OriginalFileLength

Refers to the "OriginalFileLength" property of the "DEXTUpload.NET.IFileManagement" interface.

IsFiltered

Refers to the "IsFiltered" property of the "DEXTUpload.NET.IFileManagement" interface.

IsImage

Refers to the "IsImage" property of the "DEXTUpload.NET.IFileManagement" interface.

ImageFormat

Refers to the "ImageFormat" attribute of the "DEXTUpload.NET.IFileManagement" interface.

ImageWidth

Refers to the "ImageWidth" property of the "DEXTUpload.NET.IFileManagement" interface.

ImageHeight

Refers to the "ImageHeight" property of the "DEXTUpload.NET.IFileManagement" interface.

TempFilePath

Refers to the "TempFilePath" property of the "DEXTUpload.NET.IFileManagement" interface.

LastSavedFilePath

Refers to the "LastSavedFilePath" property of the "DEXTUpload.NET.IFileManagement" interface.

LastSavedFileName

Refers to the "LastSavedFileName" property of the "DEXTUpload.NET.IFileManagement" interface.

IsKeeping

Refers to the "IsKeeping" property of the "DEXTUpload.NET.IFileManagement" interface.

Methods

Save

Refers to the "Save" method of the "DEXTUpload.NET.IFileManagement" interface.

SaveAs

Refers to the "SaveAs" method of the "DEXTUpload.NET.IFileManagement" interface.

Keep

Refers to the "Keep" methods of the "DEXTUpload.NET.IFileManagement" interface.

DeleteTempFile

Refers to the "DeleteTempFile" methods of the "DEXTUpload.NET.IFileManagement" interface.

ReadText

Refers to the "ReadText" methods of the "DEXTUpload.NET.IFileManagement" interface.