Pipeline Class

Definition

The implementation of pipeline activity. This similar concept which we have in PowerShell today like Get-Process | Stop-Process. Pipline activity will make sure the piped execution of its child acitities.

public ref class Pipeline sealed : Microsoft::PowerShell::Activities::PipelineEnabledActivity
public sealed class Pipeline : Microsoft.PowerShell.Activities.PipelineEnabledActivity
type Pipeline = class
    inherit PipelineEnabledActivity
Public NotInheritable Class Pipeline
Inherits PipelineEnabledActivity
Inheritance

Constructors

Pipeline()

Default constructor

Properties

Activities

Get activities.

AppendOutput

Determines whether to append output to Result.

(Inherited from PipelineEnabledActivity)
Input

The Input stream for the activity.

(Inherited from PipelineEnabledActivity)
Result

The output stream from the activity

(Inherited from PipelineEnabledActivity)
UseDefaultInput

Determines whether to connect the input stream for this activity.

(Inherited from PipelineEnabledActivity)

Applies to