IFormFileCollection Interfaccia

Definizione

Rappresenta la raccolta di file inviati con 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)
Derivato
Implementazioni

Proprietà

Item[String]

Ottiene il primo file con il nome specificato.

Metodi

GetFile(String)

Ottiene il primo file con il nome specificato.

GetFiles(String)

Ottiene un oggetto IReadOnlyList<T> contenente i file di IFormFileCollection con il nome specificato.

Si applica a