Exemplo n.º 1
0
 public Task<LocalDbState> DoInitialPullIfNeededAsync(OfflineSyncArguments args = null)
 {
     return Task.FromResult(LocalDbState.Unknown);
 }
Exemplo n.º 2
0
 public Task<bool> TrySyncAsync(OfflineSyncArguments args = null)
 {
     return Task.FromResult(true);
 }
Exemplo n.º 3
0
 protected bool Equals(OfflineSyncArguments other)
 {
     return Equals(Query, other.Query) && PurgeCache == other.PurgeCache;
 }