FloatingQueue.Server.Core.NodeConfiguration.Equals C# (CSharp) Method

Equals() public method

public Equals ( NodeConfiguration other ) : bool
other NodeConfiguration
return bool
        public bool Equals(NodeConfiguration other)
        {
            if (ReferenceEquals(null, other))
            {
                return false;
            }
            if (ReferenceEquals(this, other))
            {
                return true;
            }
            return other.ServerId == ServerId;
        }

Same methods

NodeConfiguration::Equals ( object obj ) : bool