Apache.NMS.ActiveMQ.Commands.BrokerId.Equals C# (CSharp) Method

Equals() public method

public Equals ( BrokerId that ) : bool
that BrokerId
return bool
        public virtual bool Equals(BrokerId that)
        {
            if(!Equals(this.Value, that.Value))
            {
                return false;
            }

            return true;
        }

Same methods

BrokerId::Equals ( object that ) : bool