1 implementation of FileName
Microsoft.AspNetCore.Http (1)
FormFile.cs (1)
70public string FileName { get; }
4 references to FileName
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\BrowserFileFromFormFile.cs (1)
12public string Name => formFile.FileName;
Microsoft.AspNetCore.Http.Features (1)
IFormFile.cs (1)
40/// Do not use the <see cref="FileName"/> property of <see cref="IFormFile"/> other than for display and logging.
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Binders\FormFileModelBinder.cs (1)
148if (file.Length == 0 && string.IsNullOrEmpty(file.FileName))
ModelBinding\FormFileValueProvider.cs (1)
51if (file.Length == 0 && string.IsNullOrEmpty(file.FileName))