| ExecutionPoint Constructor (BuildStep, ExecutionBehaviors) |
Constructor
Namespace: SandcastleBuilder.Utils.BuildComponentAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public ExecutionPoint(
BuildStep buildStep,
ExecutionBehaviors behavior
)
Public Sub New (
buildStep As BuildStep,
behavior As ExecutionBehaviors
)
public:
ExecutionPoint(
BuildStep buildStep,
ExecutionBehaviors behavior
)
new :
buildStep : BuildStep *
behavior : ExecutionBehaviors -> ExecutionPoint
Parameters
- buildStep
- Type: SandcastleBuilder.Utils.BuildEngineBuildStep
The step in which the plug-in should run. - behavior
- Type: SandcastleBuilder.Utils.BuildComponentExecutionBehaviors
The behavior of the plug-in when it is ran.
Exceptions Exception | Condition |
---|
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. |
See Also