Click or drag to resize
ITaskGroupElementPerform Method
Makes sure the element is performed. If the element is an ITaskGroup, all tasks and taskgroups inside the taskgroup are performed. If the element is an ITask, the Perform method of the ITaskperformer is called.

Namespace:  SD.LLBLGen.Pro.ApplicationCore
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
bool Perform(
	IGenerator executingGenerator,
	LogNode parentNode
)

Parameters

executingGenerator
Type: SD.LLBLGen.Pro.ApplicationCoreIGenerator
The generator instance that is performing this taskgroupelement
parentNode
Type: SD.LLBLGen.Pro.Core.GeneralDataStructuresLogNode
the parent LogNode to log all new LogNodes to

Return Value

Type: Boolean
true if all task performs reported true, false if at least one failed.
Exceptions
ExceptionCondition
GeneratorAbortExceptionWhen a task encounters a situation which should result in the abortion of the task execution process.
See Also