Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/ConstrainedExecution/Consistency.cs
T
2026-04-10 22:50:51 +02:00

30 lines
1.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.ConstrainedExecution
{
/// <summary>Specifies a reliability contract.</summary>
// Token: 0x0200052D RID: 1325
[Token(Token = "0x200052D")]
[Serializable]
public enum Consistency
{
/// <summary>In the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process.</summary>
// Token: 0x0400185D RID: 6237
[Token(Token = "0x400185D")]
MayCorruptProcess,
/// <summary>In the face of exceptional conditions, the common language runtime (CLR) makes no guarantees regarding state consistency in the current application domain.</summary>
// Token: 0x0400185E RID: 6238
[Token(Token = "0x400185E")]
MayCorruptAppDomain,
/// <summary>In the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance.</summary>
// Token: 0x0400185F RID: 6239
[Token(Token = "0x400185F")]
MayCorruptInstance,
/// <summary>In the face of exceptional conditions, the method is guaranteed not to corrupt state.</summary>
// Token: 0x04001860 RID: 6240
[Token(Token = "0x4001860")]
WillNotCorruptState
}
}