public override bool Equals(object obj)
        {
            GetChildren2Request peer = (GetChildren2Request)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)
        {
            GetChildren2Request children2Request = (GetChildren2Request)obj;

            if (children2Request == null)
            {
                return(false);
            }
            if (object.ReferenceEquals((object)children2Request, (object)this))
            {
                return(true);
            }
            bool flag1 = this.Path.Equals(children2Request.Path);

            if (!flag1)
            {
                return(flag1);
            }
            bool flag2 = this.Watch == children2Request.Watch;

            if (!flag2)
            {
                return(flag2);
            }
            return(flag2);
        }
Beispiel #3
0
        public override bool Equals(object obj)
        {
            GetChildren2Request objA = (GetChildren2Request)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);
        }
Beispiel #4
0
        public int CompareTo(object obj)
        {
            GetChildren2Request request = (GetChildren2Request)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)
        {
            GetChildren2Request peer = (GetChildren2Request)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)
        {
            GetChildren2Request children2Request = (GetChildren2Request)obj;

            if (children2Request == null)
            {
                throw new InvalidOperationException("Comparing different types of records.");
            }
            int num1 = this.Path.CompareTo(children2Request.Path);

            if (num1 != 0)
            {
                return(num1);
            }
            int num2 = this.Watch == children2Request.Watch ? 0 : (this.Watch ? 1 : -1);

            if (num2 != 0)
            {
                return(num2);
            }
            return(num2);
        }