Share via


StoreTrackingOptions Enum

Definition

A flags enumeration for the available store tracking options available.

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum StoreTrackingOptions
[<System.Flags>]
type StoreTrackingOptions = 
Public Enum StoreTrackingOptions
Inheritance
StoreTrackingOptions
Attributes

Fields

AllNotifications 63

Generates all record operations and batch notifications.

AllNotificationsAndChangeDetection 255

Generates all record operation notifications, batch notifications, insert and updates detection and record change detection.

DetectInsertsAndUpdates 64

Enable "upsert" analysis to detect if the record is being created or updated.

DetectRecordChanges 192

On updates, enable change detection on records and only generates notifications if data changes are detected. This automatically enables inserts and updates analysis.

None 0

No tracking options.

NotifyLocalAndServerOperations 15

Generates notifications for local and server (pull or push) record operations.

NotifyLocalConflictResolutionOperations 2

Generates notifications for local conflict resolution record operations.

NotifyLocalOperations 1

Generates notifications for local record operations.

NotifyServerBatch 48

Generates a notification at the end of an operation batch triggered by a server pull or a server push.

NotifyServerOperations 12

Generates notifications for operations triggerd by a server pull or a server push.

NotifyServerPullBatch 16

Generates a notification at the end of an operation batch triggered by a server pull.

NotifyServerPullOperations 4

Generates notifications for operations triggered by a server pull.

NotifyServerPushBatch 32

Generates a notification at the end of an operation batch triggered by a server push.

NotifyServerPushOperations 8

Generates notifiactions for operations triggered by a server push.

Applies to