Managing Synchronization Parameters

Synchronization parameters let an application change the parameters that retrieve data from an MBO during a synchronization session.

The primary purpose of synchronization parameters is to partition data. Change the synchronization parameters to affect the data you are working with (including searches), and synchronization.

To add a synchronization parameter:

CustomerSubscription sp = new CustomerSubscription();
sp.Name = "example";
Customer.AddSubscription(sp);

To list all synchronization parameters:

Sybase.Collections.GenericList<CustomerSubscription> r = Customer.GetSubscriptions(); 

To remove a synchronization parameter:

Sybase.Collections.GenericList<CustomerSubscription> r = Customer.GetSubscriptions();
CustomerSubscription sub = r.Item(0);
Customer.RemoveSubscription(sub);