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

Equals() public method

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

            return true;
        }

Same methods

SessionId::Equals ( object that ) : bool