HttpFileCollectionWrapper.Get Method

Definition

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

Overloads

Get(Int32)

Returns the posted file object at the specified index.

Get(String)

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

Get(Int32)

Returns the posted file object at the specified index.

public:
 override System::Web::HttpPostedFileBase ^ Get(int index);
public override System.Web.HttpPostedFileBase Get (int index);
override this.Get : int -> System.Web.HttpPostedFileBase
Public Overrides Function Get (index As Integer) As HttpPostedFileBase

Parameters

index
Int32

The index of the item to return.

Returns

The posted file object specified by index.

Exceptions

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

Applies to

Get(String)

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

public:
 override System::Web::HttpPostedFileBase ^ Get(System::String ^ name);
public override System.Web.HttpPostedFileBase Get (string name);
override this.Get : string -> System.Web.HttpPostedFileBase
Public Overrides Function Get (name As String) As HttpPostedFileBase

Parameters

name
String

The name of the object to return.

Returns

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

Applies to