IFormFileCollection Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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>
type IFormFileCollection = interface
interface seq<IFormFile>
interface IEnumerable
interface IReadOnlyCollection<IFormFile>
interface IReadOnlyList<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. |