Click or drag to resize
Task Scheduler Managed Class Library

TaskDefinitionAddition(TaskDefinition, Action) Operator

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.12.0
Syntax
C#
public static TaskDefinition operator +(
	TaskDefinition definition,
	Action action
)
Request Example View Source

Parameters

definition  TaskDefinition
The definition to which the action is to be added.
action  Action
The action to add.

Return Value

TaskDefinition
The definition with the added action.
See Also