ZennoLab Assemblies Documentation
LockListSyncer Method
Example 
The performs the lock the lists.
Syntax
public static void LockListSyncer()
Example
The following code example demonstrates uses of the LockListSyncer method.
// get the list from project
$list = $project->Lists->get_Item("List1");
// lock the lists
ZennoLab\CommandCenter\PhpHelper::LockListSyncer();
try 
{
    // get the item from list
    $tmp = $list->get_Item(0);
    // remove this item
    $list->RemoveAt(0);
}
catch (Exception $e) {}
// unlock the lists
ZennoLab\CommandCenter\PhpHelper::UnLockListSyncer();
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

PhpHelper Class
PhpHelper Members
LockInputSyncer Method
LockTableSyncer Method
UnLockInputSyncer Method
UnLockListSyncer Method
UnLockTableSyncer Method

Send Feedback