mCleaner.Logics.Commands.CommandLogic_Base.UpdateProgressLog C# (CSharp) Method

UpdateProgressLog() public method

public UpdateProgressLog ( string WindowLogText, string ProgressText, bool update_progress_text = true ) : void
WindowLogText string
ProgressText string
update_progress_text bool
return void
        public void UpdateProgressLog(string WindowLogText, string ProgressText, bool update_progress_text = true)
        {
            if (update_progress_text) ProgressWorker.I.EnQ(ProgressText);

            VMCleanerML.TextLog += WindowLogText;
            //VMCleanerML.MaxProgress = this.TTD.Count;
            //VMCleanerML.ProgressIndex++;
        }
CommandLogic_Base