CheckpointStore property

Specifies whether the client should perform extra store checkpoints to control the growth of the database store during synchronization.

Syntax
Visual Basic

Public Property CheckpointStore As Boolean
C#

public bool CheckpointStore  { get; set; }
Property value

True to specify that the client should perform extra store checkpoints. The default is false, meaning only required checkpointing is done.

Remarks

The checkpoint operation adds I/O operations for the application, and so slows synchronization. This option is most useful for large downloads with many updates. Devices with slow flash memory might not want to pay the performance penalty associated with additional checkpoints.

See also