ConsoleControl.ConsoleControl.processInterace_OnProcessError C# (CSharp) Method

processInterace_OnProcessError() private method

Handles the OnProcessError event of the processInterace control.
private processInterace_OnProcessError ( 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_OnProcessError(object sender, ProcessInterface.ProcessEventArgs args) {
			// Write the output, in red
			WriteOutput(args.Content, Color.Red);

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