ConsoleControl.ConsoleControl.processInterace_OnProcessOutput C# (CSharp) Method

processInterace_OnProcessOutput() private method

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

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