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

SQL Anywhere 11.0.1 (中文) » UltraLite - .NET 编程 » UltraLite .NET 2.0 API 参考 » ULSyncProgressListener 接口

 

SyncProgressed 方法

同步过程中将调用它来向用户通知进度。此方法应返回 true 取消同步或 false 继续同步。

语法
Visual Basic
Public Function SyncProgressed( _
   ByVal data As ULSyncProgressData _
) As Boolean
C#
public bool SyncProgressed(
   ULSyncProgressData data
);
参数
  • data   包含最新同步进度数据的 ULSyncProgressData 对象。

返回值

此方法应返回 true 取消同步或 false 继续同步。

注释

在调用 SyncProgressed 的过程中,不应该调用任何 UltraLite.NET API 方法。

另请参见