5 types derived from FileResult
Microsoft.AspNetCore.Mvc.Core (4)
FileContentResult.cs (1)
15public class FileContentResult : FileResult
FileStreamResult.cs (1)
15public class FileStreamResult : FileResult
PhysicalFileResult.cs (1)
15public class PhysicalFileResult : FileResult
VirtualFileResult.cs (1)
16public class VirtualFileResult : FileResult
Microsoft.AspNetCore.Mvc.Core.Test (1)
FileResultHelperTest.cs (1)
483private class EmptyFileResult : FileResult
12 references to FileResult
Microsoft.AspNetCore.Mvc.Core (12)
FileResult.cs (4)
18/// Creates a new <see cref="FileResult"/> instance with 45/// Gets or sets the last modified information associated with the <see cref="FileResult"/>. 50/// Gets or sets the etag associated with the <see cref="FileResult"/>. 55/// Gets or sets the value that enables range processing for the <see cref="FileResult"/>.
Infrastructure\FileContentResultExecutor.cs (1)
77public static void ExecutingFileResult(ILogger logger, FileResult fileResult)
Infrastructure\FileResultExecutorBase.cs (2)
47/// <param name="result">The <see cref="FileResult"/>.</param> 55FileResult result,
Infrastructure\FileStreamResultExecutor.cs (1)
89public static void ExecutingFileResult(ILogger logger, FileResult fileResult)
Infrastructure\PhysicalFileResultExecutor.cs (1)
165public static void ExecutingFileResult(ILogger logger, FileResult fileResult, string fileName)
Infrastructure\VirtualFileResultExecutor.cs (1)
147public static void ExecutingFileResult(ILogger logger, FileResult fileResult, string fileName)
PhysicalFileResult.cs (1)
12/// A <see cref="FileResult"/> on execution will write a file from disk to the response
VirtualFileResult.cs (1)
13/// A <see cref="FileResult" /> that on execution writes the file specified using a virtual path to the response