HttpFileCollection
Wisej.Core.HttpFileCollection
Namespace: Wisej.Core
Assembly: Wisej.Framework (3.5.0.0)
Provides access to and organizes files uploaded by a client.
Properties
AllKeys

String[]: Returns a string array containing the keys (names) of all members in the file collection.
Count

Int32: Returns the number of files in the collection.
Item(index)

HttpPostedFile: Returns the HttpPostedFile at the index.
Item(name)

HttpPostedFile: Returns the HttpPostedFile identified by the specified name .
Methods
Get(index)

Returns the HttpPostedFile at the specified index.
Returns: HttpPostedFile.
Get(name)

Returns the HttpPostedFile with the specified name.
Returns: HttpPostedFile.
GetKey(index)

Returns the name of the file at the specified index .
Returns: String.
GetMultiple(name)

Returns all files that match the specified name.
Returns: IList<HttpPostedFile>. Returns all files that match the specified name.
Last updated
Was this helpful?