Skip to content

Instantly share code, notes, and snippets.

@jakejscott
Created May 11, 2012 15:18
Show Gist options
  • Save jakejscott/2660406 to your computer and use it in GitHub Desktop.
Save jakejscott/2660406 to your computer and use it in GitHub Desktop.
Asp.net web api, text/html, text/plain formatter
public class HtmlFormatter : MediaTypeFormatter
{
public HtmlFormatter()
{
SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/plain"));
}
protected override bool CanReadType(Type type)
{
return false;
}
protected override bool CanWriteType(Type type)
{
return typeof(string) == type;
}
protected override Task OnWriteToStreamAsync(Type type, object value, Stream stream, HttpContentHeaders contentHeaders, FormatterContext formatterContext, TransportContext transportContext)
{
using (var writer = new StreamWriter(stream))
{
writer.WriteLine("Hijacked..");
writer.WriteLine(value.ToString());
writer.WriteLine(" ..egad!");
}
var tcs = new TaskCompletionSource<Stream>();
tcs.SetResult(stream);
return tcs.Task;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment