Azavea.Open.DAO.CSV.CsvDescriptor.ToCleanString C# (CSharp) 메소드

ToCleanString() 공개 메소드

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