예제 #1
0
 public bool Equals(ITagActionInfo other)
 {
     return(ActionInfo.Equals(other.ActionInfo, compareTimestamps: false) &&
            TagID == other.TagID &&
            PageContentsArray.IsEqualTo(other.PageContentsArray)
            );
 }
예제 #2
0
 public bool IsEqualTo(ITagActionInfo other)
 {
     return(Equals(other));
 }
예제 #3
0
 public TagActionInfo(ITagActionInfo rhs)
 {
     SetFrom(rhs.ActionInfo, rhs.TagID, rhs.PageContentsArray);
 }