Manual exception handling - n3wt0n/BugGuardian GitHub Wiki

Manual Exception Handling

In any case and with every kind of application, you can always use BugGuardian to handle your exceptions.

The easiest way is to use it in the catch part of a try/catch block

try
{
    //your code here
}
catch (Exception ex
{
    DBTek.BugGuardian.Factories.ConfigurationFactory.SetConfiguration("http://MY_TFS_SERVER:8080/Tfs", "MY_USERNAME", "MY_PASSWORD", "MY_PROJECT");
    using (var manager = new DBTek.BugGuardian.BugGuardianManager())
    {
        manager.AddBug(ex);
    }
}