24 writes to FileDownloadName
Microsoft.AspNetCore.Mvc.Core (16)
ControllerBase.cs (16)
1103=> new FileContentResult(fileContents, contentType) { FileDownloadName = fileDownloadName }; 1120FileDownloadName = fileDownloadName, 1187FileDownloadName = fileDownloadName, 1211FileDownloadName = fileDownloadName, 1265=> new FileStreamResult(fileStream, contentType) { FileDownloadName = fileDownloadName }; 1286FileDownloadName = fileDownloadName, 1362FileDownloadName = fileDownloadName, 1389FileDownloadName = fileDownloadName, 1434=> new VirtualFileResult(virtualPath, contentType) { FileDownloadName = fileDownloadName }; 1452FileDownloadName = fileDownloadName, 1519FileDownloadName = fileDownloadName, 1543FileDownloadName = fileDownloadName, 1591=> new PhysicalFileResult(physicalPath, contentType) { FileDownloadName = fileDownloadName }; 1613FileDownloadName = fileDownloadName, 1680FileDownloadName = fileDownloadName, 1704FileDownloadName = fileDownloadName,
Microsoft.AspNetCore.Mvc.RazorPages (8)
PageBase.cs (4)
334=> new FileContentResult(fileContents, contentType) { FileDownloadName = fileDownloadName }; 356=> new FileStreamResult(fileStream, contentType) { FileDownloadName = fileDownloadName }; 378=> new VirtualFileResult(virtualPath, contentType) { FileDownloadName = fileDownloadName }; 403=> new PhysicalFileResult(physicalPath, contentType) { FileDownloadName = fileDownloadName };
PageModel.cs (4)
666=> new FileContentResult(fileContents, contentType) { FileDownloadName = fileDownloadName }; 688=> new FileStreamResult(fileStream, contentType) { FileDownloadName = fileDownloadName }; 710=> new VirtualFileResult(virtualPath, contentType) { FileDownloadName = fileDownloadName }; 809=> new PhysicalFileResult(physicalPath, contentType) { FileDownloadName = fileDownloadName };
5 references to FileDownloadName
Microsoft.AspNetCore.Mvc.Core (5)
Infrastructure\FileContentResultExecutor.cs (1)
82ExecutingFileResultWithNoFileName(logger, fileResultType, fileResult.FileDownloadName);
Infrastructure\FileResultExecutorBase.cs (1)
66FileDownloadName = result.FileDownloadName,
Infrastructure\FileStreamResultExecutor.cs (1)
94ExecutingFileResultWithNoFileName(logger, fileResultType, fileResult.FileDownloadName);
Infrastructure\PhysicalFileResultExecutor.cs (1)
170ExecutingFileResult(logger, fileResultType, fileName, fileResult.FileDownloadName);
Infrastructure\VirtualFileResultExecutor.cs (1)
152ExecutingFileResult(logger, fileResultType, fileName, fileResult.FileDownloadName);