ExecutionPolicy Enum
Indicates when the pipeline is executed.
Namespace
Statiq.Common
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["ExecutionPolicy"] class Type type-node

Syntax

public enum ExecutionPolicy

Fields

Name Field Type Constant Value Summary
Always ExecutionPolicy 3
The pipeline is always executed, regardless of explicitly specified pipelines.
static
Default ExecutionPolicy 0
The pipeline is normally executed (I.e., it has a deployment policy equivalent to Normal) unless Deployment is true in which case the pipeline is manually executed (I.e., it has a deployment policy equivalent to Manual).
static
Manual ExecutionPolicy 2
The pipeline is not normally executed unless explicitly specified or as a dependency of an executing pipeline.
static
Normal ExecutionPolicy 1
The pipeline is normally executed.
static

Extension Methods