Click or drag to resize
Task Scheduler Managed Class Library

ActionCollectionAddRange Method

Adds a collection of actions to the end of the ActionCollection.

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.12.0
Syntax
C#
public void AddRange(
	IEnumerable<Action> actions
)
Request Example View Source

Parameters

actions  IEnumerableAction
The actions to be added to the end of the ActionCollection. The collection itself cannot be null and cannot contain null elements.
Exceptions
ExceptionCondition
ArgumentNullExceptionactions is null.
See Also