ProcessBaseCommand.InputObject 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.
If the input is a stream of [collections of] Process objects, we bypass the Name and Id parameters and read the Process objects directly. This allows us to deal with processes which have wildcard characters in their name.
public:
virtual property cli::array <System::Diagnostics::Process ^> ^ InputObject { cli::array <System::Diagnostics::Process ^> ^ get(); void set(cli::array <System::Diagnostics::Process ^> ^ value); };
public virtual System.Diagnostics.Process[] InputObject { get; set; }
[System.Management.Automation.Parameter(Mandatory=true, ParameterSetName="InputObject", ValueFromPipeline=true)]
public virtual System.Diagnostics.Process[] InputObject { get; set; }
member this.InputObject : System.Diagnostics.Process[] with get, set
[<System.Management.Automation.Parameter(Mandatory=true, ParameterSetName="InputObject", ValueFromPipeline=true)>]
member this.InputObject : System.Diagnostics.Process[] with get, set
Public Overridable Property InputObject As Process()
Property Value
Process[]
Process objects
- Attributes