Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.Reflection.ExceptionHandlingClauseOptions

Assembly: System.Runtime

Identifies kinds of exception-handling clauses.

Values

Clause
The clause accepts all exceptions that derive from a specified type.
Filter
The clause contains user-specified instructions that determine whether the exception should be ignored (that is, whether normal execution should resume), be handled by the associated handler, or be passed on to the next clause.
Finally
The clause is executed whenever the try block exits, whether through normal control flow or because of an unhandled exception.
Fault
The clause is executed if an exception occurs, but not on completion of normal control flow.