Azavea.Open.DAO.ConnectionDescriptor.GetHashCode C# (CSharp) Method

GetHashCode() public method

The default implementation uses the hashcode of ToCompleteString. If this is inaccurate or inefficient for a given implementation, this method should be overridden.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return ToCompleteString().GetHashCode();
        }