无法在C#中提供文件

时间:2010-11-01 18:32:29

标签: c# wcf file bytearray

我有一个byte [],其中包含代表图像的所有数据。如何在浏览器中将其作为实际图像提供?以下代码仅返回字节列表: -

List<HubAsset> hubAsset = _core.GetHubAssets(query);
            byte[] file = Convert.FromBase64String(hubAsset[0].Data);                               
            return file;

1 个答案:

答案 0 :(得分:0)

这已经在SO上了:

Streaming byte[] to Image in ASP.NET C#