AEMManager.ConsoleWindow.Process_OutputDataReceived C# (CSharp) Method

Process_OutputDataReceived() public method

public Process_OutputDataReceived ( object sender, DataReceivedEventArgs e ) : void
sender object
e System.Diagnostics.DataReceivedEventArgs
return void
        public void Process_OutputDataReceived(object sender, DataReceivedEventArgs e)
        {
            if (string.IsNullOrEmpty(e.Data)) {
            return;
              }
              txtConsoleOutput.AppendText(e.Data + "\n");
        }