5 types derived from FileResult
Microsoft.AspNetCore.Mvc.Core (4)
FileContentResult.cs (1)
15
public class FileContentResult :
FileResult
FileStreamResult.cs (1)
15
public class FileStreamResult :
FileResult
PhysicalFileResult.cs (1)
15
public class PhysicalFileResult :
FileResult
VirtualFileResult.cs (1)
16
public class VirtualFileResult :
FileResult
Microsoft.AspNetCore.Mvc.Core.Test (1)
FileResultHelperTest.cs (1)
483
private 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)
77
public static void ExecutingFileResult(ILogger logger,
FileResult
fileResult)
Infrastructure\FileResultExecutorBase.cs (2)
47
/// <param name="result">The <see cref="
FileResult
"/>.</param>
55
FileResult
result,
Infrastructure\FileStreamResultExecutor.cs (1)
89
public static void ExecutingFileResult(ILogger logger,
FileResult
fileResult)
Infrastructure\PhysicalFileResultExecutor.cs (1)
165
public static void ExecutingFileResult(ILogger logger,
FileResult
fileResult, string fileName)
Infrastructure\VirtualFileResultExecutor.cs (1)
147
public 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