Skip to content

Instantly share code, notes, and snippets.

@jpda
Created January 12, 2015 21:53
Show Gist options
  • Save jpda/defafbe878ff2cab210f to your computer and use it in GitHub Desktop.
Save jpda/defafbe878ff2cab210f to your computer and use it in GitHub Desktop.
EndpointExtension.cs
public static class EndpointExtension
{
public static void AddAuthorizationEndpointBehavior(this ServiceEndpoint endpoint)
{
endpoint.EndpointBehaviors.Add(new AuthorizationHeaderEndpointBehavior());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment