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 檔案。

適用於