AdoAdapters.AdoOutputAdapter.GetShortStatus C# (CSharp) Метод

GetShortStatus() публичный Метод

Gets a short one-line status of this AdoOutputAdapter.
public GetShortStatus ( int maxLength ) : string
maxLength int Maximum length of the status message.
Результат string
        public override string GetShortStatus(int maxLength)
        {
            return $"Archived {m_measurementCount} measurements to database.".CenterText(maxLength);
        }