Click or drag to resize
TaskGroupElementPerformElement Method
Performs the element. 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.CodeGenerationMetaData.Tasks
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected abstract bool PerformElement(
	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