Interface IMigrationManifestEditor
IMigrationManifest that can be edited. Used while a migration is in progress.
Inherited Members
Namespace: Tableau.Migration.Engine.Manifest
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationManifestEditor : IMigrationManifest, IEquatable<IMigrationManifest>
Properties
Entries
Gets an object to edit manifest entries with.
Declaration
IMigrationManifestEntryCollectionEditor Entries { get; }
Property Value
Type | Description |
---|---|
IMigrationManifestEntryCollectionEditor |
Methods
AddErrors(IEnumerable<Exception>)
Adds top-level errors that are not related to any Tableau content item.
Declaration
IMigrationManifestEditor AddErrors(IEnumerable<Exception> errors)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<Exception> | errors | The errors to add. |
Returns
Type | Description |
---|---|
IMigrationManifestEditor | This manifest editor, for fluent API usage. |
AddErrors(IEnumerable<IResult>)
Adds top-level errors that are not related to any Tableau content item from multiple IResult objects.
Declaration
IMigrationManifestEditor AddErrors(IEnumerable<IResult> results)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<IResult> | results | The results to add errors from. |
Returns
Type | Description |
---|---|
IMigrationManifestEditor | This manifest editor, for fluent API usage. |
AddErrors(params Exception[])
Adds top-level errors that are not related to any Tableau content item.
Declaration
IMigrationManifestEditor AddErrors(params Exception[] errors)
Parameters
Type | Name | Description |
---|---|---|
Exception[] | errors | The errors to add. |
Returns
Type | Description |
---|---|
IMigrationManifestEditor | This manifest editor, for fluent API usage. |
AddErrors(IResult)
Adds top-level errors that are not related to any Tableau content item from a IResult object.
Declaration
IMigrationManifestEditor AddErrors(IResult result)
Parameters
Type | Name | Description |
---|---|---|
IResult | result | The result to add errors from. |
Returns
Type | Description |
---|---|
IMigrationManifestEditor | This manifest editor, for fluent API usage. |