public Task<LocalDbState> DoInitialPullIfNeededAsync(OfflineSyncArguments args = null)
 {
     return Task.FromResult(LocalDbState.Unknown);
 }
 public Task<bool> TrySyncAsync(OfflineSyncArguments args = null)
 {
     return Task.FromResult(true);
 }
示例#3
0
 protected bool Equals(OfflineSyncArguments other)
 {
     return Equals(Query, other.Query) && PurgeCache == other.PurgeCache;
 }