Pipeline.Input Property

Definition

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.

Applies to