1

我有一个从字节数组中获得的 FileContentResult,并希望将其转换为 FileStreamResult。这可能吗?如果是这样,怎么做?

4

1 回答 1

8

首先,我对 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.
于 2015-01-07T20:53:31.353 回答