Azavea.Open.DAO.Memory.MemoryDescriptor.ToCompleteString C# (CSharp) 메소드

ToCompleteString() 공개 메소드

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
리턴 string
        public override string ToCompleteString()
        {
            return _connectionString;
        }