mscorlib(4.0.0.0) API with additions
ExceptionHandlingClauseOptions.cs
2 
3 namespace System.Reflection
4 {
6  [Flags]
7  [ComVisible(true)]
9  {
11  Clause = 0x0,
13  Filter = 0x1,
15  Finally = 0x2,
17  Fault = 0x4
18  }
19 }
The clause accepts all exceptions that derive from a specified type.
Definition: __Canon.cs:3
ExceptionHandlingClauseOptions
Identifies kinds of exception-handling clauses.