ExceptionHandlingState Enum

Definition

Specifies the exception handling state when the exception event was written.

public enum class ExceptionHandlingState
public enum class ExceptionHandlingState
enum ExceptionHandlingState
public enum ExceptionHandlingState
type ExceptionHandlingState = 
Public Enum ExceptionHandlingState
Inheritance
ExceptionHandlingState

Fields

Caught 2

The exception handling state was recorded where the exception is caught.

Eclipsed 3

The exception handling state was recorded where the exception is discarded because another exception is replacing it.

Suppressed 4

The exception handling state was recorded where the exception is suppressed because the exception filter processing is finished and the exception will be discarded.

Thrown 1

The exception handling state was recorded where the exception is thrown.

Unhandled 5

The exception handling state was recorded where the exception is unhandled.

Unknown 0

An unknown exception handling state.

Applies to