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