Implemented interface member:
property
FileDownloadName
Microsoft.AspNetCore.Http.IFileHttpResult.FileDownloadName
4 writes to FileDownloadName
Microsoft.AspNetCore.Http.Results (2)
PhysicalFileHttpResult.cs (1)
62FileDownloadName = fileDownloadName;
TypedResults.cs (1)
515FileDownloadName = fileDownloadName,
Microsoft.AspNetCore.Http.Results.Tests (2)
PhysicalFileResultTest.cs (2)
47var result = Assert.IsAssignableFrom<IFileHttpResult>(new PhysicalFileHttpResult("file.zip", contentType) { FileDownloadName = downloadName }); 60var result = Assert.IsAssignableFrom<IContentTypeHttpResult>(new PhysicalFileHttpResult("file.zip", contentType) { FileDownloadName = downloadName });
2 references to FileDownloadName
Microsoft.AspNetCore.Http.Results (1)
PhysicalFileHttpResult.cs (1)
128FileDownloadName,
Microsoft.AspNetCore.Http.Results.Tests (1)
TypedResultsTests.cs (1)
282Assert.Equal(fileDownloadName, result.FileDownloadName);