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 1.0 API Reference » ULDatabaseManager class

SetActiveSyncListener method Next Page

SetServerSyncListener method


Specifies the listener object used to process the specified server synchronization message.

Syntax

Visual Basic

Public Sub SetServerSyncListener( _
ByVal messageName As String, _
ByVal appClassName As String, _
ByVal listener As ULServerSyncListener _
)

C#

public void SetServerSyncListener(
string messageName,
string appClassName,
ULServerSyncListener listener
);

Parameters
Remarks

The parameter appClassName is the unique identifier used to identify the application. The application may only use one appClassName at a time. While a listener is registered with a particular appClassName, calls to SetServerSyncListener or SetActiveSyncListener with a different appClassName fail.

To remove the listener for a particular message, call SetServerSyncListener with a null reference (Nothing in Visual Basic) as the listener parameter.

To remove all listeners, call SetServerSyncListener with a null reference (Nothing in Visual Basic) for all parameters.

Applications should remove all listeners before exiting.

Exceptions
Example

For an example of SetServerSyncListener, see the ServerSyncInvoked method.

See also