gpt4 book ai didi

c# - 如何将 FileContentResult 转换为 FileStreamResult?

转载 作者:太空宇宙 更新时间:2023-11-03 18:28:41 24 4
gpt4 key购买 nike

我有一个从字节数组中获取的 FileContentResult,我想将其转换为 FileStreamResult。这可能吗?如果是这样,如何?

最佳答案

首先,我对 MVC 了解不多,但听起来您不需要这样做。如果你有依赖于 FileStreamResult 的代码,看看你是否可以让它依赖于 FileResult,它是 FileStreamResultFileContentResult.

但除此之外,您始终可以使用:

var streamResult = new FileStreamResult(new MemoryStream(contentResult.FileContents),
contentResult.ContentType)
streamResult.FileDownloadName = contentResult.FileDownloadName;
// You could use an object initializer instead of a separate statement, of course.

关于c# - 如何将 FileContentResult 转换为 FileStreamResult?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27828288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com