public override bool Equals(object obj) { ExistsRequest peer = (ExistsRequest)obj; if (peer == null) { return(false); } if (Object.ReferenceEquals(peer, this)) { return(true); } bool ret = false; ret = Path.Equals(peer.Path); if (!ret) { return(ret); } ret = (Watch == peer.Watch); if (!ret) { return(ret); } return(ret); }
public override bool Equals(object obj) { ExistsRequest objA = (ExistsRequest)obj; if (objA == null) { return(false); } if (object.ReferenceEquals(objA, this)) { return(true); } bool flag = false; flag = this.Path.Equals(objA.Path); if (flag) { flag = this.Watch == objA.Watch; if (!flag) { return(flag); } } return(flag); }
public override bool Equals(object obj) { ExistsRequest existsRequest = (ExistsRequest)obj; if (existsRequest == null) { return(false); } if (object.ReferenceEquals((object)existsRequest, (object)this)) { return(true); } bool flag1 = this.Path.Equals(existsRequest.Path); if (!flag1) { return(flag1); } bool flag2 = this.Watch == existsRequest.Watch; if (!flag2) { return(flag2); } return(flag2); }
public int CompareTo(object obj) { ExistsRequest request = (ExistsRequest)obj; if (request == null) { throw new InvalidOperationException("Comparing different types of records."); } int num = 0; num = this.Path.CompareTo(request.Path); if (num == 0) { num = (this.Watch == request.Watch) ? 0 : (this.Watch ? 1 : -1); if (num != 0) { return(num); } } return(num); }
public int CompareTo(object obj) { ExistsRequest peer = (ExistsRequest)obj; if (peer == null) { throw new InvalidOperationException("Comparing different types of records."); } int ret = 0; ret = Path.CompareTo(peer.Path); if (ret != 0) { return(ret); } ret = (Watch == peer.Watch)? 0 : (Watch?1:-1); if (ret != 0) { return(ret); } return(ret); }
public int CompareTo(object obj) { ExistsRequest existsRequest = (ExistsRequest)obj; if (existsRequest == null) { throw new InvalidOperationException("Comparing different types of records."); } int num1 = this.Path.CompareTo(existsRequest.Path); if (num1 != 0) { return(num1); } int num2 = this.Watch == existsRequest.Watch ? 0 : (this.Watch ? 1 : -1); if (num2 != 0) { return(num2); } return(num2); }