30 lines
1.2 KiB
C#
30 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.ConstrainedExecution
|
|
{
|
|
/// <summary>Specifies a reliability contract.</summary>
|
|
// Token: 0x02000549 RID: 1353
|
|
[Token(Token = "0x2000549")]
|
|
[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: 0x04001920 RID: 6432
|
|
[Token(Token = "0x4001920")]
|
|
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: 0x04001921 RID: 6433
|
|
[Token(Token = "0x4001921")]
|
|
MayCorruptAppDomain,
|
|
/// <summary>In the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance.</summary>
|
|
// Token: 0x04001922 RID: 6434
|
|
[Token(Token = "0x4001922")]
|
|
MayCorruptInstance,
|
|
/// <summary>In the face of exceptional conditions, the method is guaranteed not to corrupt state.</summary>
|
|
// Token: 0x04001923 RID: 6435
|
|
[Token(Token = "0x4001923")]
|
|
WillNotCorruptState
|
|
}
|
|
}
|