Click or drag to resize
Task Scheduler Managed Class Library

TriggerCollectionAddRange Method

Adds a collection of unbound triggers to the end of the TriggerCollection.

Namespace:  Microsoft.Win32.TaskScheduler
Assembly:  Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntax
public void AddRange(
	IEnumerable<Trigger> triggers
)
Request Example View Source

Parameters

triggers
Type: System.Collections.GenericIEnumerableTrigger
The triggers to be added to the end of the TriggerCollection. The collection itself cannot be null and cannot contain null elements.
Exceptions
ExceptionCondition
ArgumentNullExceptiontriggers is null.
See Also