As raised in this forum post the default conversion of the CaptureException method return type Guid to a string is not in a format Sentry allows searching for.
Create a struct SentryId which hold a Guid and overrides ToString to use the format: ToString("n").
Implement the implicit operator to Guid.
As raised in this forum post the default conversion of the
CaptureExceptionmethod return typeGuidto a string is not in a format Sentry allows searching for.Create a
struct SentryIdwhich hold aGuidand overridesToStringto use the format:ToString("n").Implement the
implicitoperator toGuid.