TaskServiceExtensionsGetFilteredAvailableTriggers(TaskDefinition, AvailableTriggers, Version, Boolean) Method

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

Definition

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.11.0
public static AvailableTriggers GetFilteredAvailableTriggers(
	this TaskDefinition td,
	AvailableTriggers availableTriggers,
	Version taskSchedulerVersion,
	bool showCustom = false
)

Parameters

td  TaskDefinition
The TaskDefinition instance.
availableTriggers  AvailableTriggers
The available triggers.
taskSchedulerVersion  Version
The Task Scheduler version.
showCustom  Boolean  (Optional)
Show CustomTrigger instances.

Return Value

AvailableTriggers
The filtered set of available triggers.

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