HttpFileCollectionWrapper.Get 方法

定义

按名称或索引,返回集合中的已发布文件对象。

重载

Get(Int32)

返回指定索引处的已发布文件对象。

Get(String)

返回集合中具有指定名称的已发布文件对象。

Get(Int32)

返回指定索引处的已发布文件对象。

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

参数

index
Int32

要返回的项的索引。

返回

HttpPostedFileBase

index 指定的已发布文件对象。

例外

index 超出了集合的有效索引范围。

适用于

Get(String)

返回集合中具有指定名称的已发布文件对象。

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

参数

name
String

要返回的对象名称。

返回

HttpPostedFileBase

如果找到 name 指定的已发布文件对象,则为该对象;否则为 null

适用于