TrackingMode Enumeração

Definição

Determina se as alterações feitas em um DataServiceCollection<T> são rastreadas.Determines whether changes that are made to a DataServiceCollection<T> are tracked.

public enum class TrackingMode
public enum TrackingMode
type TrackingMode = 
Public Enum TrackingMode
Herança
TrackingMode

Campos

AutoChangeTracking 1

As alterações nos itens no DataServiceCollection<T> são controladas automaticamente pelo cliente.Changes to items in the DataServiceCollection<T> are automatically tracked by the client.

None 0

As alterações feitas nos itens no DataServiceCollection<T> não são automaticamente controladas pelo cliente.Changes made to items in the DataServiceCollection<T> are not tracked automatically by the client.

Comentários

A TrackingMode enumeração Especifica se as alterações feitas aos itens na coleção são controladas automaticamente.The TrackingMode enumeration specifies whether or not changes that are made to items in the collection are tracked automatically.

Os valores da TrackingMode enumeração são usados quando você cria uma nova instância da DataServiceCollection<T> classe.Values from the TrackingMode enumeration are used when you create a new instance of the DataServiceCollection<T> class.

Aplica-se a