This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Identifies kinds of exception-handling clauses.</summary>
// Token: 0x02000230 RID: 560
[Token(Token = "0x2000230")]
[Flags]
[ComVisible(true)]
public enum ExceptionHandlingClauseOptions
{
/// <summary>The clause accepts all exceptions that derive from a specified type.</summary>
// Token: 0x04000AB6 RID: 2742
[Token(Token = "0x4000AB6")]
Clause = 0,
/// <summary>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.</summary>
// Token: 0x04000AB7 RID: 2743
[Token(Token = "0x4000AB7")]
Filter = 1,
/// <summary>The clause is executed whenever the try block exits, whether through normal control flow or because of an unhandled exception.</summary>
// Token: 0x04000AB8 RID: 2744
[Token(Token = "0x4000AB8")]
Finally = 2,
/// <summary>The clause is executed if an exception occurs, but not on completion of normal control flow.</summary>
// Token: 0x04000AB9 RID: 2745
[Token(Token = "0x4000AB9")]
Fault = 4
}
}