I want to use jquery to call web-api, the ApiController will return a HttpResponseMessage,
example:
HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK);
result.Content = new StreamContent(File.OpenRead("D:\\Images\\heroAccent.png"));
result.Content.Headers.ContentType =
new MediaTypeHeaderValue("application/octet-stream");
result.Content.Headers.ContentDisposition =
new ContentDispositionHeaderValue("attachment");
result.Content.Headers.ContentDisposition.FileName = "file.png";
return result;
I want to add file stream on it and use jquery ajax call back function(data param:octet-stream) to popup me a download,Please show me some example code!