Interface IDataImportEvents
Contains events that are raised during import execution on IDataImporter.
Event handlers can be registered to modify data during import.
Assembly: EPiServer.Enterprise.dll
Version: 12.0.3
Syntax
public interface IDataImportEvents
Methods
add_BlobImported(ImportedBlobEventHandler)
Declaration
void add_BlobImported(ImportedBlobEventHandler value)
Parameters
add_BlobImporting(ImportingBlobEventHandler)
Declaration
void add_BlobImporting(ImportingBlobEventHandler value)
Parameters
add_Completed(ImportingEventHandler)
Declaration
void add_Completed(ImportingEventHandler value)
Parameters
add_ContentImported(ImportedContentEventHandler)
Declaration
void add_ContentImported(ImportedContentEventHandler value)
Parameters
add_ContentImporting(ImportingContentEventHandler)
Declaration
void add_ContentImporting(ImportingContentEventHandler value)
Parameters
add_PropertyImporting(ImportingPropertyEventHandler)
Declaration
void add_PropertyImporting(ImportingPropertyEventHandler value)
Parameters
add_Starting(ImportingEventHandler)
Declaration
void add_Starting(ImportingEventHandler value)
Parameters
remove_BlobImported(ImportedBlobEventHandler)
Declaration
void remove_BlobImported(ImportedBlobEventHandler value)
Parameters
remove_BlobImporting(ImportingBlobEventHandler)
Declaration
void remove_BlobImporting(ImportingBlobEventHandler value)
Parameters
remove_Completed(ImportingEventHandler)
Declaration
void remove_Completed(ImportingEventHandler value)
Parameters
remove_ContentImported(ImportedContentEventHandler)
Declaration
void remove_ContentImported(ImportedContentEventHandler value)
Parameters
remove_ContentImporting(ImportingContentEventHandler)
Declaration
void remove_ContentImporting(ImportingContentEventHandler value)
Parameters
remove_PropertyImporting(ImportingPropertyEventHandler)
Declaration
void remove_PropertyImporting(ImportingPropertyEventHandler value)
Parameters
remove_Starting(ImportingEventHandler)
Declaration
void remove_Starting(ImportingEventHandler value)
Parameters
Events
BlobImported
Occurs after a blob has been imported
Declaration
event ImportedBlobEventHandler BlobImported
Event Type
BlobImporting
Occurs before a blob is imported
Declaration
event ImportingBlobEventHandler BlobImporting
Event Type
Completed
Occurs when the import is completed
Declaration
event ImportingEventHandler Completed
Event Type
ContentImported
Occurs after a page has been imported
Declaration
event ImportedContentEventHandler ContentImported
Event Type
ContentImporting
Occurs before a content item is imported
Declaration
event ImportingContentEventHandler ContentImporting
Event Type
PropertyImporting
Occurs when a proeprty is to be imported. An eventhandler can register to take care of property deserializing
Declaration
event ImportingPropertyEventHandler PropertyImporting
Event Type
Starting
Occurs when the import is starting
Declaration
event ImportingEventHandler Starting
Event Type
Extension Methods