TrackingMode Enum
Definition
Determines whether changes that are made to a DataServiceCollection<T> are tracked.
public enum class TrackingMode
public enum TrackingMode
type TrackingMode =
Public Enum TrackingMode
- Inheritance
Fields
AutoChangeTracking | 1 | Changes to items in the DataServiceCollection<T> are automatically tracked by the client. |
None | 0 | Changes made to items in the DataServiceCollection<T> are not tracked automatically 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.