Interface IMigrationPlanOptionsBuilder
Interface for an object that can build a set of per-plan options.
Namespace: Tableau.Migration.Engine.Options
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationPlanOptionsBuilder
Methods
Build()
Builds the options collection.
Declaration
IMigrationPlanOptionsCollection Build()
Returns
| Type | Description |
|---|---|
| IMigrationPlanOptionsCollection | The options collection. |
Configure<TOptions>(Func<IServiceProvider, TOptions>)
Sets the configuration for a given options type.
Declaration
IMigrationPlanOptionsBuilder Configure<TOptions>(Func<IServiceProvider, TOptions> factory)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<IServiceProvider, TOptions> | factory | A factory function to create the options type. |
Returns
| Type | Description |
|---|---|
| IMigrationPlanOptionsBuilder | The same options builder, for fluent API usage. |
Type Parameters
| Name | Description |
|---|---|
| TOptions | The options type. |
Configure<TOptions>(TOptions)
Sets the configuration for a given options type.
Declaration
IMigrationPlanOptionsBuilder Configure<TOptions>(TOptions opts)
Parameters
| Type | Name | Description |
|---|---|---|
| TOptions | opts | The options. |
Returns
| Type | Description |
|---|---|
| IMigrationPlanOptionsBuilder | The same options builder, for fluent API usage. |
Type Parameters
| Name | Description |
|---|---|
| TOptions | The options type. |