HttpFileCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ファイル コレクションから個別の HttpPostedFile オブジェクトを取得します。 このプロパティは、名前インデックスと数値インデックスのいずれかでオブジェクトを検索できるようにするためにオーバーロードされます。
オーバーロード
Item[Int32] |
指定した数値インデックスを持つオブジェクトを HttpFileCollection から取得します。 |
Item[String] |
指定した名前のオブジェクトをファイル コレクションから取得します。 |
Item[Int32]
指定した数値インデックスを持つオブジェクトを HttpFileCollection から取得します。
public:
property System::Web::HttpPostedFile ^ default[int] { System::Web::HttpPostedFile ^ get(int index); };
public System.Web.HttpPostedFile this[int index] { get; }
member this.Item(int) : System.Web.HttpPostedFile
Default Public ReadOnly Property Item(index As Integer) As HttpPostedFile
パラメーター
- index
- Int32
ファイル コレクションから取得する項目のインデックス。
プロパティ値
HttpPostedFile で指定された index
。
例
次の例では、クライアントによって送信されたコレクションから最初のファイル オブジェクト (index = 0) を取得し、オブジェクトによって表される実際のファイルの名前を取得します。
HttpPostedFile MyPostedMember = Request.Files[0];
String MyFileName = MyPostedMember.FileName;
Dim MyPostedMember As HttpPostedFile = Request.Files(0)
Dim MyFileName As String = MyPostedMember.FileName
こちらもご覧ください
適用対象
Item[String]
指定した名前のオブジェクトをファイル コレクションから取得します。
public:
property System::Web::HttpPostedFile ^ default[System::String ^] { System::Web::HttpPostedFile ^ get(System::String ^ name); };
public System.Web.HttpPostedFile this[string name] { get; }
member this.Item(string) : System.Web.HttpPostedFile
Default Public ReadOnly Property Item(name As String) As HttpPostedFile
パラメーター
- name
- String
返される項目の名前。
プロパティ値
HttpPostedFile で指定された name
。
例
次の例では、クライアントによって送信されたコレクションから "CustInfo" という名前のファイル オブジェクトを取得し、オブジェクトによって表される実際のファイルの名前を取得します。
HttpPostedFile MyPostedMember = Request.Files["CustInfo"];
String MyFileName = MyPostedMember.FileName;
Dim MyPostedMember As HttpPostedFile = Request.Files("CustInfo")
Dim MyFileName As String = MyPostedMember.FileName
こちらもご覧ください
適用対象
.NET