TrackingMode Enum

Definition

Determines whether changes that are made to a DataServiceCollection<T> are tracked.

C#
public enum TrackingMode
Inheritance
TrackingMode

Fields

Name Value Description
None 0

Changes made to items in the DataServiceCollection<T> are not tracked automatically by the client.

AutoChangeTracking 1

Changes to items in the DataServiceCollection<T> are automatically tracked by the client.

Remarks

The TrackingMode enumeration specifies whether or not changes that are made to items in the collection are tracked automatically.

Values from the TrackingMode enumeration are used when you create a new instance of the DataServiceCollection<T> class.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also