HttpFileCollectionWrapper.Item[] 属性

定义

按名称或索引,从文件集合中获取已发布文件对象。

重载

Item[Int32]

获取指定索引处的已发布文件对象。

Item[String]

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

Item[Int32]

获取指定索引处的已发布文件对象。

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

参数

index
Int32

要获取的项的索引。

属性值

HttpPostedFileBase

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

例外

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

适用于

Item[String]

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

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

参数

name
String

要获取的对象的名称。

属性值

HttpPostedFileBase

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

适用于