Esempio n. 1
0
 protected bool Equals(RemoteUrl other)
 {
     return(CentroidMs1 == other.CentroidMs1 && CentroidMs2 == other.CentroidMs2 &&
            Equals(LockMassParameters, other.LockMassParameters) && string.Equals(ServerUrl, other.ServerUrl) &&
            string.Equals(Username, other.Username) && ModifiedTime.Equals(other.ModifiedTime) &&
            string.Equals(EncodedPath, other.EncodedPath));
 }
Esempio n. 2
0
 public bool CanHandleUrl(RemoteUrl remoteUrl)
 {
     if (remoteUrl.AccountType != AccountType)
     {
         return(false);
     }
     return(ServerUrl == remoteUrl.ServerUrl);
 }
Esempio n. 3
0
 public abstract bool AsyncFetchContents(RemoteUrl remoteUrl, out RemoteServerException remoteException);
Esempio n. 4
0
 public abstract void RetryFetchContents(RemoteUrl remoteUrl);