Pipeline.Input 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 input writer for this pipeline.
public:
abstract property System::Management::Automation::Runspaces::PipelineWriter ^ Input { System::Management::Automation::Runspaces::PipelineWriter ^ get(); };
public abstract System.Management.Automation.Runspaces.PipelineWriter Input { get; }
member this.Input : System.Management.Automation.Runspaces.PipelineWriter
Public MustOverride ReadOnly Property Input As PipelineWriter
Property Value
Remarks
When the caller calls Input.Write(), the caller writes to the input of the pipeline. Thus, Input
is a PipelineWriter or "thing which can be written to". Note:Input must be closed after Pipeline.InvokeAsync for InvokeAsync to finish.