Pipeline.Output Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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".