For the complete documentation index, see llms.txt. This page is also available as Markdown.

Out-PSUPipeline

Internal.

SYNOPSIS

Internal.

SYNTAX

Out-PSUPipeline -Collection <System.Collections.Generic.ICollection`1[System.String]> [-InputObject <PSObject>]
 [<CommonParameters>]

DESCRIPTION

Internal.

EXAMPLES

Example 1

PS C:\> $items = [System.Collections.Generic.List[string]]::new(); Get-Date | Out-PSUPipeline -Collection $items

Writes the piped object into the provided collection for internal pipeline capture.

PARAMETERS

-Collection

Internal.

-InputObject

Internal.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable, and -ProgressAction. For more information, see about_CommonParameters.

INPUTS

System.Management.Automation.PSObject

OUTPUTS

System.Object

NOTES

Last updated

Was this helpful?