Skip to content

Instantly share code, notes, and snippets.

@codescribler
Created June 3, 2013 13:20
Show Gist options
  • Save codescribler/5698094 to your computer and use it in GitHub Desktop.
Save codescribler/5698094 to your computer and use it in GitHub Desktop.
An extension to make getting at the defaultModel from a nancyfx call easy to get to.
public static class Extensions
{
public static dynamic DefaultModel(this BrowserResponse response)
{
return response.Context.NegotiationContext.DefaultModel;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment