3 implementations of GetFile
Microsoft.AspNetCore.Http (1)
FormFileCollection.cs (1)
15
public IFormFile?
GetFile
(string name)
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
92
public IFormFile?
GetFile
(string name) => null;
ModelBinding\Binders\FormFileModelBinder.cs (1)
179
public IFormFile?
GetFile
(string name)
3 references to GetFile
Microsoft.AspNetCore.Components.Endpoints (2)
FormMapping\Converters\FileConverter.cs (2)
28
var targetFile = reader.FormFileCollection.
GetFile
(reader.CurrentPrefix.ToString());
74
var file = formFileCollection.
GetFile
(reader.CurrentPrefix.ToString());
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\FileConverter.cs (1)
74
var file = formFileCollection.
GetFile
(reader.CurrentPrefix.ToString());