ThrowingExceptionMode¶
Namespace: ThinkGeo.UI.Wpf
Specifies how the overlay handles internal exceptions.
public enum ThrowingExceptionMode
Inheritance Object → ValueType → Enum → ThrowingExceptionMode
Implements IComparable, IFormattable, IConvertible
Fields¶
| Name | Value | Description |
|---|---|---|
| ThrowException | 0 | In this mode, the overlay will throw internal exceptions. |
| Exceptions will propagate to the caller, allowing for external handling. | ||
| SuppressException | 1 | In this mode, the overlay will suppress internal exceptions. |
| Exceptions are caught and not propagated, allowing the overlay | ||
| to continue operating without interrupting the caller. |