Interface IMigrationContentLoader<TContent>
Interface for an object that can retrieve a pager to load content items to consider for migration. These items are then mapped, filtered, and migrated.
Namespace: Tableau.Migration.Engine.Endpoints
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationContentLoader<TContent>
Type Parameters
| Name | Description |
|---|---|
| TContent | The content type to get the pager for. |
Methods
GetMigrationContentPager(int)
Gets a pager for content to consider for migration.
Declaration
IPager<TContent> GetMigrationContentPager(int pageSize)
Parameters
| Type | Name | Description |
|---|---|---|
| int | pageSize | The page size to configure the pager for. |
Returns
| Type | Description |
|---|---|
| IPager<TContent> | The pager. |