Table of Contents

Interface IUploadedFilesCollection

Namespace
CMS.Base
Assembly
CMS.Base.dll

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

index int

Property Value

IUploadedFile

Exceptions

ArgumentOutOfRangeException

index is outside the valid range of indexes for the collection.