IFormFileCollection 接口

定义

表示使用 HttpRequest 发送的文件的集合。

public interface class IFormFileCollection : System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Http::IFormFile ^>, System::Collections::Generic::IReadOnlyCollection<Microsoft::AspNetCore::Http::IFormFile ^>, System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Http::IFormFile ^>
public interface IFormFileCollection : System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyCollection<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>
type IFormFileCollection = interface
    interface IReadOnlyList<IFormFile>
    interface seq<IFormFile>
    interface IEnumerable
    interface IReadOnlyCollection<IFormFile>
Public Interface IFormFileCollection
Implements IEnumerable(Of IFormFile), IReadOnlyCollection(Of IFormFile), IReadOnlyList(Of IFormFile)
派生
实现

属性

Item[String]

获取具有指定名称的第一个文件。

方法

GetFile(String)

获取具有指定名称的第一个文件。

GetFiles(String)

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

适用于