public void RemoveDocument(DocumentIdentity documentIdentity)
 {
     this.documentList.Remove(documentIdentity);
 }
 public bool Equals(DocumentIdentity other)
 {
     return(other != null && StringComparer.OrdinalIgnoreCase.Equals(this.Moniker, other.Moniker));
 }
示例#3
0
 public void RemoveDocument(DocumentIdentity documentIdentity)
 {
     this.documentList.Remove(documentIdentity);
 }
 public bool Equals(DocumentIdentity other)
 {
     return other != null && StringComparer.OrdinalIgnoreCase.Equals(this.Moniker, other.Moniker);
 }