Skip to content

Instantly share code, notes, and snippets.

@tobbbe
Created October 1, 2019 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobbbe/de652e6c24b165eb40c6935d564eb3f1 to your computer and use it in GitHub Desktop.
Save tobbbe/de652e6c24b165eb40c6935d564eb3f1 to your computer and use it in GitHub Desktop.
return raw string from web api controller
[HttpGet]
public HttpResponseMessage ReturnRawString()
{
return new HttpResponseMessage()
{
Content = new StringContent(
Something.CreateString(),
Encoding.UTF8,
"text/plain"
)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment