ARCed.Core.Logger.Clear C# (CSharp) Méthode

Clear() public méthode

Clears the buffer of all logged text
public Clear ( bool notify = false ) : void
notify bool Flag to fire NoteTextChanged event
Résultat void
        public void Clear(bool notify = false)
        {
            this._buffer.Clear();
            if (notify && this.TextChanged != null)
                this.TextChanged(this, new LogTextEventArgs(""));
        }