I\'m working on a web service using ASP.NET MVC\'s new WebAPI that will serve up binary files, mostly .cab and .exe files.
.cab
.exe
The following co
You could try
httpResponseMessage.Content.Headers.Add("Content-Type", "application/octet-stream");