Skip to content

Instantly share code, notes, and snippets.

@markberryman
markberryman / UnhandledExceptionFilter.cs
Created November 17, 2012 01:42
Web API UnhandledExceptionFilter Example
public class UnhandledExceptionFilter : ExceptionFilterAttribute {
public override void OnException(HttpActionExecutedContext context) {
Elmah.ErrorLog.GetDefault(HttpContext.Current).Log(new Elmah.Error(context.Exception));
}
}