PipelineConfigurationContext Methods
ClassMethods3 members
Provides contextual information for pipeline configuration callbacks.
Gets all pipeline steps with the specified tag.
public class PipelineConfigurationContext{ public IEnumerable<PipelineStep> GetSteps( string tag) { // ... }}Parameters
tagstringThe tag to search for.Returns
IEnumerable<PipelineStep>A collection of steps that have the specified tag. Gets all pipeline steps associated with the specified resource.
public class PipelineConfigurationContext{ public IEnumerable<PipelineStep> GetSteps( IResource resource) { // ... }}Parameters
resourceIResourceThe resource to search for.Returns
IEnumerable<PipelineStep>A collection of steps associated with the resource.Remarks
This overload is not available in polyglot app hosts. Use
PipelineConfigurationContext.Pipeline instead. Gets all pipeline steps with the specified tag that are associated with the specified resource.
public class PipelineConfigurationContext{ public IEnumerable<PipelineStep> GetSteps( IResource resource, string tag) { // ... }}Parameters
resourceIResourceThe resource to search for.tagstringThe tag to search for.Returns
IEnumerable<PipelineStep>A collection of steps that have the specified tag and are associated with the resource.Remarks
This overload is not available in polyglot app hosts. Use
PipelineConfigurationContext.Pipeline instead.