Enum HookPoint
- Namespace
- PatternKit.Generators.Template
- Assembly
- PatternKit.Generators.Abstractions.dll
Defines the lifecycle points where hooks can be invoked in a template method workflow.
public enum HookPoint
Fields
AfterAll = 1Invoked after all steps complete successfully.
BeforeAll = 0Invoked before any steps execute.
OnError = 2Invoked when any step throws an exception. Receives the exception as a parameter.