PipelineStep.RequiredBy Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.