ASP.NET - n3wt0n/BugGuardian GitHub Wiki

ASP.NET applications

The library supports both Web Forms and MVC applications.

There are 2 official projects supporting both WebApp types:

If you want to manually add automatic bugs interception on any Unhandled Exception, can follow 2 different ways:

  • use the Application_Error on Global.asax
  • use an Exception Filer

Global.asax

This approach works for both new Asp.net application (Web Forms and MVC) and legacy web applications. Just add this snippet to you Global.asax file and let it work. It intercepts all the Unhandled Exceptions.

void Application_Error(Object sender, EventArgs e)
{
    DBTek.BugGuardian.Factories.ConfigurationFactory.SetConfiguration("https://MY_ACCOUNT.visualstudio.com", "MY_USERNAME", "MY_PASSWORD", "MY_PROJECT");
    Exception ex = Server.GetLastError();
    using (var manager = new DBTek.BugGuardian.BugGuardianManager())
    {
        manager.AddBug(ex);
    }
}

Exception Filter

If you don't need to manager a legacy application, you can use an Exception Filter.

You need to implement a class that implement the IExceptionFilter interface, something like this:

public class BugGuardianFilter : IExceptionFilter
{
    public bool AllowMultiple
        => true;

    public Task ExecuteExceptionFilterAsync(HttpActionExecutedContext actionExecutedContext, CancellationToken cancellationToken)
    {
        using (var manager = new DBTek.BugGuardian.BugGuardianManager())
        {
            return manager.AddBugAsync(actionExecutedContext.Exception);
        }
    }
}

Then, just register it as filter in the Application_Start method of Global.asax

void Application_Start(object sender, EventArgs e)
{
    DBTek.BugGuardian.Factories.ConfigurationFactory.SetConfiguration("http://MY_TFS_SERVER:8080/Tfs", "MY_USERNAME", "MY_PASSWORD", "MY_PROJECT");
    GlobalConfiguration.Configuration.Filters.Add(new Filters.BugGuardianFilter());
    [...]
    //your code here
    [...]
}