RavenFS.Synchronization.ContentUpdateWorkItem.Equals C# (CSharp) Method

Equals() public method

public Equals ( ContentUpdateWorkItem other ) : bool
other ContentUpdateWorkItem
return bool
		public bool Equals(ContentUpdateWorkItem other)
		{
			if (ReferenceEquals(null, other)) return false;
			if (ReferenceEquals(this, other)) return true;
			return Equals(other.FileName, FileName) && Equals(other.FileETag, FileETag);
		}

Same methods

ContentUpdateWorkItem::Equals ( object obj ) : bool