NuDeploy.Core.Services.Installation.PowerShell.PipelineExecutor.ErrorDataReady C# (CSharp) Method

ErrorDataReady() private method

private ErrorDataReady ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void ErrorDataReady(object sender, EventArgs e)
        {
            Collection<object> data = this.pipeline.Error.NonBlockingRead();
            if (this.OnErrorReady != null)
            {
                this.OnErrorReady(this, data);
            }
        }