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

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULSyncParms class

Password property Next Page

PingOnly property


Specifies whether the client should only ping the MobiLink server instead of performing a real synchronization.

Syntax

Visual Basic

Public Property PingOnly As Boolean

C#

public bool PingOnly { get; set; }

Property value

True to specify that the client should only ping the MobiLink server, false to specify the client should perform a real synchronization. The default is false.

Remarks

At most, only 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().

See also