Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULSyncParms class

 

ResumePartialDownload property

Specifies whether to resume or discard a previous partial download.

Syntax
Visual Basic
Public Property ResumePartialDownload  As Boolean
C#
public bool ResumePartialDownload { get; set; }
Property value

True to resume a previous partial download, false to discard a previous partial download. The default is false.

Remarks

Only at most one synchronization command (ULSyncParms.DownloadOnly, ULSyncParms.PingOnly, ULSyncParms.ResumePartialDownload, or ULSyncParms.UploadOnly) can be specified at a time. If more than one of these parameters is set to true, a ULSQLCode.SQLE_SYNC_INFO_INVALID SQLException is thrown by ULConnection.Synchronize().

For more information about partial downloads, see KeepPartialDownload property.

See also