HttpFileCollectionBase.Item[] 属性

定义

在派生类中重写时,按名称或索引获取文件集合中的已发布文件对象。

重载

Item[Int32]

在派生类中重写时,获取指定索引处已发布的文件对象。

Item[String]

在派生类中被重写时,获取集合中具有指定名称的已发布文件对象。

Item[Int32]

在派生类中重写时,获取指定索引处已发布的文件对象。

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

参数

index
Int32

要获取的对象的索引。

属性值

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

例外

适用于

Item[String]

在派生类中被重写时,获取集合中具有指定名称的已发布文件对象。

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

参数

name
String

要返回的对象名称。

属性值

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

例外

适用于