FormFileCollection.GetFiles(String) 方法

定义

获取一个 , IReadOnlyList<T> 其中包含具有指定名称的 IFormFileCollection 的文件。

public:
 virtual System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Http::IFormFile ^> ^ GetFiles(System::String ^ name);
public System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile> GetFiles (string name);
abstract member GetFiles : string -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>
override this.GetFiles : string -> System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>
Public Function GetFiles (name As String) As IReadOnlyList(Of IFormFile)

参数

name
String

要获取的文件的名称。

返回

一个 IReadOnlyList<T> ,包含实现 的 IFormFileCollection对象的文件。

实现

适用于