Azavea.Open.DAO.CSV.CsvDescriptor.ToCleanString C# (CSharp) Method

ToCleanString() public method

This method is similar to ToString, except it will not contain any "sensitive" information, I.E. passwords. This method is intended to be used for logging or error handling, where we do not want to display passwords to (potentially) just anyone, but we do want to indicate what DB connection we were using.
public ToCleanString ( ) : string
return string
        public override string ToCleanString()
        {
            return _connectionStr;
        }