Click or drag to resize
Task Scheduler Managed Class Library

TaskServiceExtensionsGetFilteredAvailableActions(TaskDefinition, AvailableActions, Version) Method

Filtered the supplied available actions based on this TaskDefinition and the version of the Task Scheduler.

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.12.1
Syntax
C#
public static AvailableActions GetFilteredAvailableActions(
	this TaskDefinition td,
	AvailableActions availableActions,
	Version taskSchedulerVersion
)
Request Example View Source

Parameters

td  TaskDefinition
The TaskDefinition instance.
availableActions  AvailableActions
The available actions.
taskSchedulerVersion  Version
The Task Scheduler version.

Return Value

AvailableActions
The filtered set of available actions.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type TaskDefinition. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also