Range Class

Represents a range of item IDs, and the clock vector that defines what is known about the items in the range.

System.Object
  Microsoft.Synchronization.Range

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

'Declaration
Public Class Range
'Usage
Dim instance As Range

The Range type exposes the following members.

  NameDescription
Public methodRangeInitializes a new instance of the Range class that contains the specified closed lower bound item ID and a clock vector that defines what is known about the items in the range.
Top

  NameDescription
Public propertyClockVectorGets the clock vector that defines what is known about the items in the range.
Public propertyItemIdGets the closed lower bound of item IDs in this range.
Top

  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top

The value that is contained in ItemId is the closed lower bound on the range of item IDs that are associated with the clock vector that is contained in ClockVector. The value of ItemId also defines the open upper bound of the previous range in the parent RangeSet object, so the open upper bound of the current range can be obtained by getting the next Range object in the list. If there are no more Range objects in the list, the range that is defined by this object contains all items that have IDs greater than or equal to ItemId.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show: