Does ServiceStack support binary responses?

I love service stack, this litle code was enough to return an Excel report from memory stream public class ExcelFileResult : IHasOptions, IStreamWriter { private readonly Stream _responseStream; public IDictionary<string, string> Options { get; private set; } public ExcelFileResult(Stream responseStream) { _responseStream = responseStream; Options = new Dictionary<string, string> { {“Content-Type”, “application/octet-stream”}, {“Content-Disposition”, “attachment; filename=\”report.xls\”;”} … Read more