Implemented interface member:
property
FileDownloadName
Microsoft.AspNetCore.Http.IFileHttpResult.FileDownloadName
4 writes to FileDownloadName
Microsoft.AspNetCore.Http.Results (2)
TypedResults.cs (1)
548
FileDownloadName
= fileDownloadName,
VirtualFileHttpResult.cs (1)
67
FileDownloadName
= fileDownloadName;
Microsoft.AspNetCore.Http.Results.Tests (2)
VirtualFileResultTests.cs (2)
31
var result = Assert.IsAssignableFrom<IFileHttpResult>(new VirtualFileHttpResult("~/file.zip", contentType) {
FileDownloadName
= downloadName });
44
var result = Assert.IsAssignableFrom<IContentTypeHttpResult>(new VirtualFileHttpResult("~/file.zip", contentType) {
FileDownloadName
= downloadName });
2 references to FileDownloadName
Microsoft.AspNetCore.Http.Results (1)
VirtualFileHttpResult.cs (1)
123
FileDownloadName
,
Microsoft.AspNetCore.Http.Results.Tests (1)
TypedResultsTests.cs (1)
301
Assert.Equal(fileDownloadName, result.
FileDownloadName
);