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