Ignoring Exceptions
You can ignore exceptions by their type when initializing the SDK:
Copied
// Add this to the SDK initialization callback
options.AddExceptionFilterForType<OperationCanceledException>();
It works in the whole inheritance chain.
The example above will also filter out TaskCanceledException
because it derives from OperationCanceledException
.
- Package:
- nuget:Sentry.Xamarin
- Version:
- 2.1.0
- Repository:
- https://github.com/getsentry/sentry-xamarin