System.Diagnostics.Contracts.Contract.Invariant Method

Specifies an invariant contract for the enclosing method or property.

Syntax

[System.Diagnostics.Conditional("CONTRACTS_FULL")]
[System.Runtime.ConstrainedExecution.ReliabilityContract(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)]
public static void Invariant (bool condition)

Parameters

condition
The conditional expression to test.

Remarks

Contract.Invariant(bool) contracts are contained within a method that is identified by the System.Diagnostics.Contracts.ContractInvariantMethodAttribute attribute; typically, the method is named ObjectInvariant.

  • This contract can be specified only in a dedicated invariant method that is declared on a class. If the method is not sealed, it should refer only to protected members, not private members, so that subclasses can be sure to maintain the invariants.

  • This contract is not exposed to clients; therefore, it may reference members that are less visible than the enclosing method.

  • You must use the binary rewriter for run-time enforcement of this invariant.

Invariants are conditionally defined based on the presence of the CONTRACTS FULL symbol. During run-time checking, invariants are checked at the end of each public method. If an invariant mentions a public method in the same class, the invariant check that would normally happen at the end of that public method is disabled and checked only at the end of the outermost method call to that class. This also happens if the class is re-entered because of a call to a method on another class.

Requirements

Namespace: System.Diagnostics.Contracts
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0