共用方式為


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

適用於