-
-
Save brettveenstra/0b254602209fb5d8934e6b9a9fc63d14 to your computer and use it in GitHub Desktop.
Asp.net web api, text/html, text/plain formatter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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