HttpRequest.Files プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
マルチパート MIME 形式でクライアントによってアップロードされたファイルのコレクションを取得します。
public:
property System::Web::HttpFileCollection ^ Files { System::Web::HttpFileCollection ^ get(); };
public System.Web.HttpFileCollection Files { get; }
member this.Files : System.Web.HttpFileCollection
Public ReadOnly Property Files As HttpFileCollection
プロパティ値
クライアントによってアップロードされたファイルのコレクションを表す HttpFileCollection オブジェクト。 HttpFileCollection オブジェクトの項目は HttpPostedFile 型です。
例
次のコード例では、コレクション内のすべてのファイルの名前を Files 表示します。
int loop1;
HttpFileCollection Files;
Files = Request.Files; // Load File collection into HttpFileCollection variable.
arr1 = Files.AllKeys; // This will get names of all files into a string array.
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
Response.Write("File: " + Server.HtmlEncode(arr1[loop1]) + "<br />");
Response.Write(" size = " + Files[loop1].ContentLength + "<br />");
Response.Write(" content type = " + Files[loop1].ContentType + "<br />");
}
Dim loop1 As Integer
Dim arr1() As String
Dim Files As HttpFileCollection
Files = Request.Files ' Load File collection into HttpFileCollection variable.
arr1 = Files.AllKeys ' This will get names of all files into a string array.
For loop1 = 0 To arr1.GetUpperBound(0)
Response.Write("File: " & Server.HtmlEncode(arr1(loop1)) & "<br>")
Response.Write(" size = " + Files(loop1).ContentLength + "<br />")
Response.Write(" content type = " + Files(loop1).ContentType + "<br />")
Next loop1
注釈
ファイル コレクションは、HTTP 要求 Content-Type
の値が "multipart/form-data" の場合にのみ設定されます。