Execution Point(Build Step, Execution Behaviors) Constructor
Constructor
Definition
Namespace: Sandcastle.Core.PlugIn
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public ExecutionPoint(
BuildStep buildStep,
ExecutionBehaviors behavior
)VB
Public Sub New (
buildStep As BuildStep,
behavior As ExecutionBehaviors
)C++
public:
ExecutionPoint(
BuildStep buildStep,
ExecutionBehaviors behavior
)F#
new :
buildStep : BuildStep *
behavior : ExecutionBehaviors -> ExecutionPointParameters
- buildStep BuildStep
- The step in which the plug-in should run.
- behavior ExecutionBehaviors
- The behavior of the plug-in when it is ran.
Exceptions
| ArgumentException | This is thrown if an attempt is made to set the Before or After behavior with the InsteadOf behavior. It is also thrown for invalid combinations of build step and behavior, i.e. Initializing with Before or InsteadOf. See the help file for a full list. |