Skip to content

Instantly share code, notes, and snippets.

@ksysiekj
Created February 24, 2017 00:30
Show Gist options
  • Save ksysiekj/8fdf427212000292d6d95904f820cb01 to your computer and use it in GitHub Desktop.
Save ksysiekj/8fdf427212000292d6d95904f820cb01 to your computer and use it in GitHub Desktop.
public sealed class JilSerializationAttribute : Attribute, IControllerConfiguration
{
public void Initialize(HttpControllerSettings controllerSettings, HttpControllerDescriptor controllerDescriptor)
{
// Register JilMediaTypeFormatter for controller
controllerSettings.Formatters.Insert(0, new JilMediaTypeFormatter());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment