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含む を取得します。

適用対象