Gets or sets the default behavior to use when performing read operations.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public ConsistencyBehavior ReadConsistency { get; set; }
Visual Basic
Public Property ReadConsistency As ConsistencyBehavior
	Get
	Set
Visual C++
public:
property ConsistencyBehavior ReadConsistency {
	ConsistencyBehavior get ();
	void set (ConsistencyBehavior value);
}

Field Value

The read consistency setting.

Remarks

The default value is Eventual. Consistent read behavior may be enforced on a case-by-case basis using ConsistentReadScope.

See Also