This documentation is archived and is not being maintained.
Consistency Enumeration
Visual Studio 2010
Specifies a reliability contract.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| MayCorruptProcess | In the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process. | |
| 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. | |
| WillNotCorruptState | In the face of exceptional conditions, the method is guaranteed not to corrupt state. NoteThis does not guarantee that the method will never fail; however, it does guarantee that such a failure will never 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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
Note