Share via


PipelineStep.RequiredBy Method

Definition

Overloads

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.

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.

RequiredBy(PipelineStep)

Source:
PipelineStep.cs

Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.

public void RequiredBy(Aspire.Hosting.Pipelines.PipelineStep step);
member this.RequiredBy : Aspire.Hosting.Pipelines.PipelineStep -> unit
Public Sub RequiredBy (step As PipelineStep)

Parameters

step
PipelineStep

The step that requires this step.

Applies to

RequiredBy(String)

Source:
PipelineStep.cs

Specifies that this step is required by another step. This creates the inverse relationship where the other step will depend on this step.

public void RequiredBy(string stepName);
member this.RequiredBy : string -> unit
Public Sub RequiredBy (stepName As String)

Parameters

stepName
String

The name of the step that requires this step.

Applies to