DroidExplorer.Core.UI.CConsole.ConsoleControl.processInterace_OnProcessOutput C# (CSharp) Method

processInterace_OnProcessOutput() private method

Handles the OnProcessOutput event of the processInterace control.
private processInterace_OnProcessOutput ( object sender, ProcessEventArgs args ) : void
sender object The source of the event.
args DroidExplorer.Core.UI.CConsole.Api.ProcessEventArgs The instance containing the event data.
return void
        void processInterace_OnProcessOutput(object sender, ProcessEventArgs args)
        {
            //  Write the output, in white
            WriteOutput(args.Content);

            //  Fire the output event.
            FireConsoleOutputEvent(args.Content);
        }