Interface IUploadedFilesCollection
Defines a contract for a collection of files uploaded within a request.
public interface IUploadedFilesCollection
- Extension Methods
Properties
Count
Returns the number of posted file objects within the request.
int Count { get; }
Property Value
- int
this[int]
Returns an IUploadedFile object corresponding to an index item within a request.
IUploadedFile this[int index] { get; }
Parameters
indexint
Property Value
Exceptions
- ArgumentOutOfRangeException
indexis outside the valid range of indexes for the collection.