.NET Framework Class Library
Consistency Enumeration

Specifies a reliability contract.

Namespace:  System.Runtime.ConstrainedExecution
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Enumeration Consistency
Visual Basic (Usage)
Dim instance As Consistency
C#
[SerializableAttribute]
public enum Consistency
Visual C++
[SerializableAttribute]
public enum class Consistency
JScript
public enum Consistency
Members

Member nameDescription
MayCorruptProcessIn the face of exceptional conditions, the CLR makes no guarantees regarding state consistency; that is, the condition might corrupt the process.
MayCorruptAppDomainIn the face of exceptional conditions, the common language runtime (CLR) makes no guarantees regarding state consistency in the current application domain.
MayCorruptInstanceIn the face of exceptional conditions, the method is guaranteed to limit state corruption to the current instance.
WillNotCorruptStateIn the face of exceptional conditions, the method is guaranteed not to corrupt state.
NoteNote:
This does not guarantee that the method will never fail; however, it does guarantee that such a failure will never corrupt state.
Remarks

The Consistency enumeration is used as a parameter to the ReliabilityContractAttribute attribute to specify the reliability guarantee on a given method.

Examples

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.

C#
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
[MethodImpl(MethodImplOptions.NoInlining)]
void StackDepth2()
{
    try
    {
        consistentLevel2 = false;
        if (depth == 2)
            Thread.Sleep(-1);
        StackDepth3();
    }
    finally
    {
        consistentLevel2 = true;
    }
}
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources

Tags :


Page view tracker