HttpFileCollectionWrapper.Item[] Property

Definition

Gets a posted file object from the file collection by either name or index.

Overloads

Item[Int32]

Gets the posted file object at the specified index.

Item[String]

Gets the posted file object that has the specified name from the collection.

Item[Int32]

Gets the posted file object at the specified index.

public:
 virtual property System::Web::HttpPostedFileBase ^ default[int] { System::Web::HttpPostedFileBase ^ get(int index); };
public override System.Web.HttpPostedFileBase this[int index] { get; }
member this.Item(int) : System.Web.HttpPostedFileBase
Default Public Overrides ReadOnly Property Item(index As Integer) As HttpPostedFileBase

Parameters

index
Int32

The index of the item to get.

Property Value

The posted file object specified by index.

Exceptions

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

Applies to

Item[String]

Gets the posted file object that has the specified name from the collection.

public:
 virtual property System::Web::HttpPostedFileBase ^ default[System::String ^] { System::Web::HttpPostedFileBase ^ get(System::String ^ name); };
public override System.Web.HttpPostedFileBase this[string name] { get; }
member this.Item(string) : System.Web.HttpPostedFileBase
Default Public Overrides ReadOnly Property Item(name As String) As HttpPostedFileBase

Parameters

name
String

The name of the object to get.

Property Value

The posted file object specified by name, if found; otherwise, null.

Applies to