PipelineStep Methods
Class Methods 4 members
Represents a step in the deployment pipeline.
DependsOn(string) Section titled DependsOn(string) Adds a dependency on another step.
public class PipelineStep{ public void DependsOn( string stepName) { // ... }}Parameters
stepName string The name of the step to depend on. DependsOn(PipelineStep) Section titled DependsOn(PipelineStep) Adds a dependency on another step.
public class PipelineStep{ public void DependsOn( PipelineStep step) { // ... }}Parameters
step PipelineStep The step to depend on. RequiredBy(string) Section titled RequiredBy(string) Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.
public class PipelineStep{ public void RequiredBy( string stepName) { // ... }}Parameters
stepName string The name of the step that requires this step. RequiredBy(PipelineStep) Section titled RequiredBy(PipelineStep) Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.
public class PipelineStep{ public void RequiredBy( PipelineStep step) { // ... }}Parameters
step PipelineStep The step that requires this step.