UploadedFileCollection Class |
Provides access to and organizes files uploaded by a client.
Inheritance Hierarchy
SystemObject
System.CollectionsCollectionBase
Kettic.AspNet.ControlsUploadedFileCollection
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public sealed class UploadedFileCollection : CollectionBase
Public NotInheritable Class UploadedFileCollection
Inherits CollectionBase
public ref class UploadedFileCollection sealed : public CollectionBase
[<SealedAttribute>]
type UploadedFileCollection =
class
inherit CollectionBase
end
Properties
| Name | Description |
---|
| ItemInt32 | Gets an individual UploadedFile object from the file
collection. In C#, this property is the indexer for the
UploadedFileCollection class. |
| ItemString | |
TopRemarks
Clients encode files and transmit them in the content body using multipart MIME
format with an HTTP Content-Type header of multipart/form-data. KaxUpload
extracts the encoded file(s) from the content body into individual members of an
UploadedFileCollection. Methods and properties of the
UploadedFile class provide access to the contents and properties of
each file.
See Also