System.Runtime.ConstrainedExecution.ReliabilityContractAttribute Class

Defines a contract for reliability between the author of some code, and the developers who have a dependency on that code.

See Also: ReliabilityContractAttribute Members

Syntax

[System.AttributeUsage(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Struct | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Interface | System.AttributeTargets.All, Inherited=false)]
public sealed class ReliabilityContractAttribute : Attribute

Remarks

The System.Runtime.ConstrainedExecution.ReliabilityContractAttribute attribute provides a mechanism for you to document your code, and to indicate what type of reliability guarantees you can make in the face of exceptional conditions that could potentially lead to an inconsistent state. In this context, exceptional conditions are defined as asynchronous exceptions that can be generated at run time by the common language runtime, such as aborted threads, out-of-memory situations, and stack overflows. You can apply the System.Runtime.ConstrainedExecution.ReliabilityContractAttribute attribute to assemblies, types, and methods.

Use this attribute with the System.Runtime.ConstrainedExecution.Consistency enumeration to define a reliability contract by documenting the level of reliability in a particular piece of code.

Requirements

Namespace: System.Runtime.ConstrainedExecution
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0