Interface IDataExportEvents
Contains events that are raised during export execution on IDataExporter.
Event handlers can be registered to modify data during export.
Assembly: EPiServer.Enterprise.dll
Version: 12.0.3
Syntax
public interface IDataExportEvents
Methods
add_BlobExported(ExportedBlobEventHandler)
Declaration
void add_BlobExported(ExportedBlobEventHandler value)
Parameters
add_BlobExporting(ExportingBlobEventHandler)
Declaration
void add_BlobExporting(ExportingBlobEventHandler value)
Parameters
add_ContentExported(ExportedContentEventHandler)
Declaration
void add_ContentExported(ExportedContentEventHandler value)
Parameters
add_ContentExporting(ExportingContentEventHandler)
Declaration
void add_ContentExporting(ExportingContentEventHandler value)
Parameters
add_PropertyExporting(ExportPropertyEventHandler)
Declaration
void add_PropertyExporting(ExportPropertyEventHandler value)
Parameters
add_Starting(ExportingEventHandler)
Declaration
void add_Starting(ExportingEventHandler value)
Parameters
remove_BlobExported(ExportedBlobEventHandler)
Declaration
void remove_BlobExported(ExportedBlobEventHandler value)
Parameters
remove_BlobExporting(ExportingBlobEventHandler)
Declaration
void remove_BlobExporting(ExportingBlobEventHandler value)
Parameters
remove_ContentExported(ExportedContentEventHandler)
Declaration
void remove_ContentExported(ExportedContentEventHandler value)
Parameters
remove_ContentExporting(ExportingContentEventHandler)
Declaration
void remove_ContentExporting(ExportingContentEventHandler value)
Parameters
remove_PropertyExporting(ExportPropertyEventHandler)
Declaration
void remove_PropertyExporting(ExportPropertyEventHandler value)
Parameters
remove_Starting(ExportingEventHandler)
Declaration
void remove_Starting(ExportingEventHandler value)
Parameters
Events
BlobExported
Occurs after a blob has been exported
Declaration
event ExportedBlobEventHandler BlobExported
Event Type
BlobExporting
Occurs before a blob is exported
Declaration
event ExportingBlobEventHandler BlobExporting
Event Type
ContentExported
Occurs after a page has been exported
Declaration
event ExportedContentEventHandler ContentExported
Event Type
ContentExporting
Occurs before a content item is exported
Declaration
event ExportingContentEventHandler ContentExporting
Event Type
PropertyExporting
Occurs when a proeprty is to be exported. An eventhandler can register to take care of property serializing
Declaration
event ExportPropertyEventHandler PropertyExporting
Event Type
Starting
Occurs when the import is starting
Declaration
event ExportingEventHandler Starting
Event Type
Extension Methods