Consistency Enumeration
.NET Framework 3.0
Specifies a reliability contract.
Namespace: System.Runtime.ConstrainedExecution
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |||
|---|---|---|---|---|
| MayCorruptAppDomain | In the face of exceptional conditions, the common language runtime (CLR) makes no guarantees regarding state consistency in the current application domain. | |||
| MayCorruptInstance | In the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance. | |||
| MayCorruptProcess | In the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process. | |||
| WillNotCorruptState | In the face of exceptional conditions, the method is guaranteed not to corrupt state.
|
The Consistency enumeration is used as a parameter to the ReliabilityContractAttribute attribute to specify the reliability guarantee on a given method.
The following code example demonstrates the use of the Consistency enumeration when specifying a constrained execution region for a method. This code example is part of a larger example provided for the ReliabilityContractAttribute constructor.
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [MethodImpl(MethodImplOptions.NoInlining)] void StackDepth2() { try { consistentLevel2 = false; if (depth == 2) Thread.Sleep(-1); StackDepth3(); } finally { consistentLevel2 = true; } }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show:
Note: