IFormFileCollection Interface

Definition

Represents the collection of files sent with the 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)
Derived
Implements

Properties

Item[String]

Gets the first file with the specified name.

Methods

GetFile(String)

Gets the first file with the specified name.

GetFiles(String)

Gets an IReadOnlyList<T> containing the files of the IFormFileCollection with the specified name.

Applies to