ServiceStack and returning a stream

给你一囗甜甜゛ 提交于 2019-11-27 07:54:06
mythz

Yes returning an IHttpResult will allow you to control the exact payload, Content-Type and other HTTP Headers as you wish.

Also you're not limited to returning a stream, i.e. you can use the HttpResult to return an xml string with a different Content-Type.

Here are some links that better demonstrate what's possible with ServiceStack return types:

You can also return a static File using a FileInfo object, with an optional parameter to return the file as an attachment which will prompt the user to download the file rather than attempt to view it in the browser with:

return new HttpResult(new FileInfo("~/static-response.xml"), asAttachment:true);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!