AudioAdapters.MicrophoneInputAdapter.GetShortStatus C# (CSharp) Method

GetShortStatus() public method

Gets a short one-line status of this AdapterBase.
public GetShortStatus ( int maxLength ) : string
maxLength int Maximum number of available characters for display.
return string
        public override string GetShortStatus(int maxLength)
        {
            return $"{m_samplesProcessed} samples processed so far...".CenterText(maxLength);
        }