Skip to main content

IPostImportHandler

  • Namespace: PPDS.Migration.Import.Handlers
  • Assembly: PPDS.Migration
  • Kind: Interface

Summary

Executes post-import processing for an entity.

Members

Methods

CanHandle

bool CanHandle(string entityLogicalName)

Determines whether this handler applies to the given entity.

  • Param entityLogicalName: The entity logical name.

  • Returns: True if this handler handles the entity.

ExecuteAsync

Task ExecuteAsync(string entityLogicalName, ImportContext context, CancellationToken cancellationToken)

Executes post-import processing for the given entity.

  • Param entityLogicalName: The entity logical name.

  • Param context: The import context.

  • Param cancellationToken: The cancellation token.

  • Returns: A task representing the asynchronous operation.