11 references to FileContentResult
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\Manage\DownloadPersonalData.cshtml.cs (1)
78return new FileContentResult(JsonSerializer.SerializeToUtf8Bytes(personalData), "application/json");
Areas\Identity\Pages\V5\Account\Manage\DownloadPersonalData.cshtml.cs (1)
78return 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) 1138return new FileContentResult(fileContents, contentType) 1160return new FileContentResult(fileContents, contentType) 1183return new FileContentResult(fileContents, contentType) 1207return new FileContentResult(fileContents, contentType)
Microsoft.AspNetCore.Mvc.Core.Test (1)
FileContentResultTest.cs (1)
26var 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 };