HttpFileCollection

Wisej.Core.HttpFileCollection

Namespace: Wisej.Core

Assembly: Wisej.Framework (3.5.0.0)

Provides access to and organizes files uploaded by a client.

public class HttpFileCollection

Properties

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

Int32: Returns the number of files in the collection.

HttpPostedFile: Returns the HttpPostedFile at the index.

HttpPostedFile: Returns the HttpPostedFile identified by the specified name .

Methods

Returns the HttpPostedFile at the specified index.

ParameterTypeDescription

index

Index of the file to retrieve.

Returns: HttpPostedFile.

Returns the HttpPostedFile with the specified name.

ParameterTypeDescription

name

The name of the object to be returned from a file collection.

Returns: HttpPostedFile.

Returns the name of the file at the specified index .

ParameterTypeDescription

index

Index of the file in the collection.

Returns: String.

Returns all files that match the specified name.

ParameterTypeDescription

name

The name to match.

Returns: IList<HttpPostedFile>. Returns all files that match the specified name.

Last updated