11 references to FileContentResult
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\Manage\DownloadPersonalData.cshtml.cs (1)
78
return new
FileContentResult
(JsonSerializer.SerializeToUtf8Bytes(personalData), "application/json");
Areas\Identity\Pages\V5\Account\Manage\DownloadPersonalData.cshtml.cs (1)
78
return new
FileContentResult
(JsonSerializer.SerializeToUtf8Bytes(personalData), "application/json");
Microsoft.AspNetCore.Mvc.Core (6)
ControllerBase.cs (6)
1103
=> new
FileContentResult
(fileContents, contentType) { FileDownloadName = fileDownloadName };
1118
=> new
FileContentResult
(fileContents, contentType)
1138
return new
FileContentResult
(fileContents, contentType)
1160
return new
FileContentResult
(fileContents, contentType)
1183
return new
FileContentResult
(fileContents, contentType)
1207
return new
FileContentResult
(fileContents, contentType)
Microsoft.AspNetCore.Mvc.Core.Test (1)
FileContentResultTest.cs (1)
26
var result = new
FileContentResult
(buffer, contentType)
Microsoft.AspNetCore.Mvc.RazorPages (2)
PageBase.cs (1)
334
=> new
FileContentResult
(fileContents, contentType) { FileDownloadName = fileDownloadName };
PageModel.cs (1)
666
=> new
FileContentResult
(fileContents, contentType) { FileDownloadName = fileDownloadName };