Click or drag to resize
Task Scheduler Managed Class Library

TaskDefinitionAddition Operator (TaskDefinition, Action)

Implements the operator + for actions on a definition, effectively adding the action to the definition.

Namespace:  Microsoft.Win32.TaskScheduler
Assembly:  Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntax
public static TaskDefinition operator +(
	TaskDefinition definition,
	Action action
)
Request Example View Source

Parameters

definition
Type: Microsoft.Win32.TaskSchedulerTaskDefinition
The definition to which the action is to be added.
action
Type: Microsoft.Win32.TaskSchedulerAction
The action to add.

Return Value

Type: TaskDefinition
The definition with the added action.
See Also