Apache.NMS.ActiveMQ.Commands.ConnectionId.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 ConnectionId)
            {
                return Equals((ConnectionId) that);
            }

            return false;
        }

Same methods

ConnectionId::Equals ( ConnectionId that ) : bool