Azavea.Open.DAO.Memory.MemoryDescriptor.ToCompleteString C# (CSharp) Method

ToCompleteString() public method

Since we often need to represent database connection info as strings, child classes must implement ToCompleteString() such that this.Equals(that) and this.ToCompleteString().Equals(that.ToCompleteString()) will behave the same.
public ToCompleteString ( ) : string
return string
        public override string ToCompleteString()
        {
            return _connectionString;
        }