Apache.NMS.ActiveMQ.Commands.BrokerId.Equals C# (CSharp) 메소드

Equals() 공개 메소드

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

            return true;
        }

Same methods

BrokerId::Equals ( object that ) : bool