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.12.0
Syntax
C#
public void AddRange(
	IEnumerable<Trigger> triggers
)
Request Example View Source

Parameters

triggers  IEnumerableTrigger
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