Pipeline.Output Property

Definition

Gets the output reader for this pipeline.

public:
 abstract property System::Management::Automation::Runspaces::PipelineReader<System::Management::Automation::PSObject ^> ^ Output { System::Management::Automation::Runspaces::PipelineReader<System::Management::Automation::PSObject ^> ^ get(); };
public abstract System.Management.Automation.Runspaces.PipelineReader<System.Management.Automation.PSObject> Output { get; }
member this.Output : System.Management.Automation.Runspaces.PipelineReader<System.Management.Automation.PSObject>
Public MustOverride ReadOnly Property Output As PipelineReader(Of PSObject)

Property Value

Remarks

When the caller calls Output.Read(), the caller reads from the output of the pipeline. Thus, Output is a PipelineReader or "thing which can be read from".

Applies to