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

Equals() public method

public Equals ( object that ) : bool
that object
return bool
        public override bool Equals(object that)
        {
            if(that is BrokerId)
            {
                return Equals((BrokerId) that);
            }

            return false;
        }

Same methods

BrokerId::Equals ( BrokerId that ) : bool