LibraryEvents Class

Defines library-level static events.

Definition

Namespace: Gemstone
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
public static class LibraryEvents
Inheritance
Object    LibraryEvents

Remarks

The LibraryEvents class automatically attaches to the UnobservedTaskException event so that any unobserved task exceptions encountered will be marked as observed and exposed via the SuppressedException event.
To disable this feature and only use custom UnobservedTaskException event handling, call the DisableUnobservedTaskExceptionHandling method during program initialization.

Methods

DisableUnobservedTaskExceptionHandling Disables automatic handling of UnobservedTaskException events. When disabled, any unobserved task exceptions encountered will not be marked as observed nor exposed via the SuppressedException event.
EnableUnobservedTaskExceptionHandling Enables automatic handling of UnobservedTaskException events. When enabled, any unobserved task exceptions encountered are marked as observed and exposed via the SuppressedException event.

Events

SuppressedException Exposes exceptions that were suppressed but otherwise unhandled.

See Also