csharp 返回附件web api c#

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 返回附件web api c#相关的知识,希望对你有一定的参考价值。

var result = new HttpResponseMessage(HttpStatusCode.OK)
{
   Content = new ByteArrayContent(byteArray)
};

result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
result.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment")
{
    FileName = attachment.FileName
};
result.Content.Headers.ContentDisposition.FileName = attachment.FileName;

return Task.FromResult(result);

以上是关于csharp 返回附件web api c#的主要内容,如果未能解决你的问题,请参考以下文章

csharp .net Rest Web Api Controller返回JSON格式大小写问题解决

csharp .net Rest Web Api Controller返回JSON格式大小写问题解决。驼峰

csharp 将Castle Windsor依赖项注入ASP.NET Web API过滤器C#

使用Web API上传附件后阅读响应

csharp Web API

csharp 上传文件web api 2