TrackingMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.