HttpFileCollection.AllKeys プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ファイル コレクション内のすべてのメンバーのキー (名前) を格納している文字列配列を取得します。
public:
property cli::array <System::String ^> ^ AllKeys { cli::array <System::String ^> ^ get(); };
public string[] AllKeys { get; }
member this.AllKeys : string[]
Public ReadOnly Property AllKeys As String()
プロパティ値
- String[]
ファイル名の配列。
例
次の例では、 HttpFileCollection クライアントから送信された名前を文字列配列に読み込みます。
String[] MyNameArray = Request.Files.AllKeys;
Dim MyNameArray() As String = Request.Files.AllKeys