Versionr.Network.Client.SyncCurrentRecords C# (CSharp) Method

SyncCurrentRecords() public method

public SyncCurrentRecords ( ) : bool
return bool
        public bool SyncCurrentRecords()
        {
            return Workspace.SyncCurrentRecords();
        }
        public bool SyncRecords()

Usage Example

Exemplo n.º 1
0
 protected override bool RunInternal(Client client, RemoteCommandVerbOptions options)
 {
     SyncRecordsOptions localOptions = options as SyncRecordsOptions;
     if (localOptions.Current)
         return client.SyncCurrentRecords();
     else
         return client.SyncRecords();
 }