Telerik.Web.Mvc.FilterDescriptor.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified other descriptor is equal to the current one.
public Equals ( FilterDescriptor other ) : bool
other FilterDescriptor The other filter descriptor.
return bool
        public virtual bool Equals(FilterDescriptor other)
        {
            if (ReferenceEquals(null, other))
            {
                return false;
            }
            if (ReferenceEquals(this, other))
            {
                return true;
            }

            return
                Equals(other.Operator, this.Operator) &&
                Equals(other.Member, this.Member) &&
                Equals(other.Value, this.Value);
        }

Same methods

FilterDescriptor::Equals ( object obj ) : bool