TaskGroupElementClone Method |
Creates a new object that is a copy of the current instance.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.CodeGenerationMetaData.Tasks
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax public abstract TaskGroupElement Clone()
Public MustOverride Function Clone As TaskGroupElement
Return Value
Type:
TaskGroupElement
A new object that is a copy of this instance.
Implements
ITaskGroupElementCloneRemarks use this method to create a copy to be used for the runtime queue. This clone method assumes the clone is made from the definition object
read from a .tasks file and to be used for the runqueue, so objects to be used during a task run aren't assumed to be live in the definition object,
like the taskperformer object, and therefore that object isn't cloned.
See Also