AddJobTriggerCommand.InputObject Property

Gets or sets the scheduled job definition objects. This SDK programming element is introduced in Windows PowerShell 3.0.

Namespace: Microsoft.PowerShell.ScheduledJob
Assembly: Microsoft.PowerShell.ScheduledJob (in Microsoft.PowerShell.ScheduledJob.dll)

Usage

'Usage
Dim instance As AddJobTriggerCommand
Dim value As ScheduledJobDefinition()

value = instance.InputObject

instance.InputObject = value

Syntax

'Declaration
<ValidateNotNullOrEmptyAttribute> _
<ParameterAttribute(Position:=0, Mandatory:=True, ValueFromPipeline:=True, ParameterSetName:="JobDefinition")> _
Public Property InputObject As ScheduledJobDefinition()
[ValidateNotNullOrEmptyAttribute] 
[ParameterAttribute(Position=0, Mandatory=true, ValueFromPipeline=true, ParameterSetName="JobDefinition")] 
public ScheduledJobDefinition[] InputObject { get; set; }
[ValidateNotNullOrEmptyAttribute] 
[ParameterAttribute(Position=0, Mandatory=true, ValueFromPipeline=true, ParameterSetName=L"JobDefinition")] 
public:
property array<ScheduledJobDefinition^>^ InputObject {
    array<ScheduledJobDefinition^>^ get ();
    void set (array<ScheduledJobDefinition^>^ value);
}
/** @property */
public ScheduledJobDefinition[] get_InputObject ()

/** @property */
public void set_InputObject (ScheduledJobDefinition[] value)
public function get InputObject () : ScheduledJobDefinition[]

public function set InputObject (value : ScheduledJobDefinition[])

Property Value

Returns an array of ScheduledJobDefinition objects.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

See Also

Reference

AddJobTriggerCommand Class
AddJobTriggerCommand Members
Microsoft.PowerShell.ScheduledJob Namespace