Property | Type | Description | |
---|---|---|---|
ApplyContainerRegistration | void | ||
Create | |||
CreateBehavior | IBehavior | ||
Replace | void |
Method | Description | |
---|---|---|
InsertAfter ( string id ) : void |
Instructs the pipeline to register this step after the id one.
|
|
InsertAfterIfExists ( string id ) : void |
Instructs the pipeline to register this step after the id one. If the id does not exist, this condition is ignored.
|
|
InsertBefore ( string id ) : void |
Instructs the pipeline to register this step before the id one.
|
|
InsertBeforeIfExists ( string id ) : void |
Instructs the pipeline to register this step before the id one. If the id does not exist, this condition is ignored.
|
|
IsEnabled ( ReadOnlySettings settings ) : bool |
Checks if this behavior is enabled.
|
Method | Description | |
---|---|---|
RegisterStep ( string stepId, |
Initializes a new instance of the RegisterStep class.
|
Method | Description | |
---|---|---|
ApplyContainerRegistration ( ReadOnlySettings settings, IConfigureComponents container ) : void | ||
Create ( string pipelineStep, |
||
CreateBehavior ( IBuilder defaultBuilder ) : IBehavior | ||
Replace ( ReplaceStep replacement ) : void |
public InsertAfterIfExists ( string id ) : void | ||
id | string | The unique identifier of the step that we want to insert after. |
return | void |
public InsertBeforeIfExists ( string id ) : void | ||
id | string | The unique identifier of the step that we want to insert before. |
return | void |
public IsEnabled ( ReadOnlySettings settings ) : bool | ||
settings | ReadOnlySettings | |
return | bool |
protected RegisterStep ( string stepId, |
||
stepId | string | The unique identifier for this steps. |
behavior | The type of |
|
description | string | A brief description of what this step does. |
factoryMethod | IBehavior>.Func | A factory method for creating the behavior. |
return | System |