Interface IMigrationActionResult
IResult object for a migration action.
Namespace: Tableau.Migration.Engine.Actions
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationActionResult : IResult
Properties
PerformNextAction
Gets whether or not to perform the next action in the pipeline.
Declaration
bool PerformNextAction { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
ForNextAction(bool)
Creates a new IMigrationActionResult object while modifying the PerformNextAction value.
Declaration
IMigrationActionResult ForNextAction(bool performNextAction)
Parameters
Type | Name | Description |
---|---|---|
bool | performNextAction | Whether or not to perform the next action in the pipeline. |
Returns
Type | Description |
---|---|
IMigrationActionResult | The new IMigrationActionResult object. |