ArchivistAdapters.ArchivistOutputAdapter.GetShortStatus C# (CSharp) 메소드

GetShortStatus() 공개 메소드

Gets a short one-line status of this ArchivistOutputAdapter.
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 Archive.".CenterText(maxLength);
        }