This library will detect all unhandled exceptions in ASP.NET-based applications and report them to your OneTrueError server (or your account at https://onetrueerror.com).
If you want to get automated handling for one of the ASP.NET derivatives, use the following libraries:
To report exceptions manually in your controller, use OneTrue.Report(exception)
, OneTrueError will include information about the HttpRequest, QueryString, Form, Session etc when your exception is reported.
This library includes the following context collections for every reported exceptions:
- All in the core library
- Application collection
- Form data
- Http headers
- Query string parameters
- Session data
- Uploaded files
- Download and install the OneTrueError server or create an account at OneTrueError.com
- Install this client library (using nuget
onetrueerror.client.aspnet
) - Configure the credentials from your OneTrueError account in your
Global.asax
- Add
OneTrue.Configuration.CatchAspNetExceptions()
in yourGlobal.asax
Done.