示例#1
0
        public int CompareTo(object obj)
        {
            GetACLRequest getAclRequest = (GetACLRequest)obj;

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

            if (num != 0)
            {
                return(num);
            }
            return(num);
        }
示例#2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public int CompareTo(object obj)
        {
            GetACLRequest peer = (GetACLRequest)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);
            }
            return(ret);
        }
示例#3
0
        public override bool Equals(object obj)
        {
            GetACLRequest getAclRequest = (GetACLRequest)obj;

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

            if (!flag)
            {
                return(flag);
            }
            return(flag);
        }
示例#4
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public override bool Equals(object obj)
        {
            GetACLRequest peer = (GetACLRequest)obj;

            if (peer == null)
            {
                return(false);
            }
            if (ReferenceEquals(peer, this))
            {
                return(true);
            }
            bool ret = false;

            ret = Path.Equals(peer.Path);
            if (!ret)
            {
                return(ret);
            }
            return(ret);
        }
示例#5
0
        public override bool Equals(object obj)
        {
            GetACLRequest objA = (GetACLRequest)obj;

            if (objA == null)
            {
                return(false);
            }
            if (object.ReferenceEquals(objA, this))
            {
                return(true);
            }
            bool flag = false;

            flag = this.Path.Equals(objA.Path);
            if (!flag)
            {
                return(flag);
            }
            return(flag);
        }