using System; using Cpp2IlInjected; namespace System.Runtime.ConstrainedExecution { /// Specifies a reliability contract. // Token: 0x02000549 RID: 1353 [Token(Token = "0x2000549")] [Serializable] public enum Consistency { /// In the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process. // Token: 0x04001920 RID: 6432 [Token(Token = "0x4001920")] MayCorruptProcess, /// In the face of exceptional conditions, the common language runtime (CLR) makes no guarantees regarding state consistency in the current application domain. // Token: 0x04001921 RID: 6433 [Token(Token = "0x4001921")] MayCorruptAppDomain, /// In the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance. // Token: 0x04001922 RID: 6434 [Token(Token = "0x4001922")] MayCorruptInstance, /// In the face of exceptional conditions, the method is guaranteed not to corrupt state. // Token: 0x04001923 RID: 6435 [Token(Token = "0x4001923")] WillNotCorruptState } }