IFormFileCollection Schnittstelle
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Stellt die Auflistung von Dateien dar, die mit httpRequest gesendet werden.
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)
- Abgeleitet
- Implementiert
Eigenschaften
Item[String] |
Ruft die erste Datei mit dem angegebenen Namen ab. |
Methoden
GetFile(String) |
Ruft die erste Datei mit dem angegebenen Namen ab. |
GetFiles(String) |
Ruft einen IReadOnlyList<T> ab, der die Dateien von IFormFileCollection mit dem angegebenen Namen enthält. |