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。

适用于