3 implementations of GetFiles
Microsoft.AspNetCore.Http (1)
FormFileCollection.cs (1)
29
public IReadOnlyList<IFormFile>
GetFiles
(string name)
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
94
IReadOnlyList<IFormFile> IFormFileCollection.
GetFiles
(string name) => Array.Empty<IFormFile>();
ModelBinding\Binders\FormFileModelBinder.cs (1)
193
public IReadOnlyList<IFormFile>
GetFiles
(string name)
3 references to GetFiles
Microsoft.AspNetCore.Components.Endpoints (2)
FormMapping\Converters\FileConverter.cs (2)
40
var targetFiles = reader.FormFileCollection.
GetFiles
(reader.CurrentPrefix.ToString());
54
result = (T)reader.FormFileCollection.
GetFiles
(reader.CurrentPrefix.ToString());
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\FileConverter.cs (1)
54
result = (T)reader.FormFileCollection.
GetFiles
(reader.CurrentPrefix.ToString());