IFormFileCollection.Item[String] プロパティ

定義

指定した名前の最初のファイルを取得します。

public:
 property Microsoft::AspNetCore::Http::IFormFile ^ default[System::String ^] { Microsoft::AspNetCore::Http::IFormFile ^ get(System::String ^ name); };
public Microsoft.AspNetCore.Http.IFormFile this[string name] { get; }
public Microsoft.AspNetCore.Http.IFormFile? this[string name] { get; }
member this.Item(string) : Microsoft.AspNetCore.Http.IFormFile
Default Public ReadOnly Property Item(name As String) As IFormFile

パラメーター

name
String

取得するファイルの名前。

プロパティ値

要求されたファイル。存在しない場合は null。

適用対象