UtilityRunsAt Method
This is used to determine if the enumerable list of execution points contains an entry for the
specified build step and behavior.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.12.21.0
public static bool RunsAt(
this IEnumerable<ExecutionPoint> executionPoints,
BuildStep step,
ExecutionBehaviors behavior
)
<ExtensionAttribute>
Public Shared Function RunsAt (
executionPoints As IEnumerable(Of ExecutionPoint),
step As BuildStep,
behavior As ExecutionBehaviors
) As Boolean
public:
[ExtensionAttribute]
static bool RunsAt(
IEnumerable<ExecutionPoint^>^ executionPoints,
BuildStep step,
ExecutionBehaviors behavior
)
[<ExtensionAttribute>]
static member RunsAt :
executionPoints : IEnumerable<ExecutionPoint> *
step : BuildStep *
behavior : ExecutionBehaviors -> bool
- executionPoints IEnumerableExecutionPoint
- An enumerable list of execution points to check
- step BuildStep
- The build step
- behavior ExecutionBehaviors
- The behavior
BooleanTrue if the enumerable list of execution points contains an entry for the specified build
step and behavior or false if it does not.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableExecutionPoint. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).