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

OutputDataReady() private method

private OutputDataReady ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void OutputDataReady(object sender, EventArgs e)
        {
            Collection<PSObject> data = this.pipeline.Output.NonBlockingRead();
            if (this.OnDataReady != null)
            {
                this.OnDataReady(this, data);
            }
        }