0
app.MapGet("/download", () =>
{
    byte[] data = null;
    string txt = "Download test file";
    data = System.Text.Encoding.UTF8.GetBytes(txt);
    return Results.File(data, "application/octet-stream", "abc.txt");
});

所以我正在尝试制作一个可以下载文件的最小api,所以在上面的代码中,asp.net 6支持Results.File方法。我使用的是asp.net 5

在 asp.net 5 中执行相同功能的任何建议?

4

0 回答 0