Click or drag to resize
TaskGroupElementPerform 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.CodeGenerationMetaData.Tasks
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public 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.

Implements

ITaskGroupElementPerform(IGenerator, LogNode)
Exceptions
ExceptionCondition
GeneratorAbortExceptionWhen a task encounters a situation which should result in the abortion of the task execution process.
See Also