Interface IDynamicDataTransfer
Handle transfering data from Dynamic Data Stores in import packages.
Namespace: EPiServer.Enterprise
Assembly: EPiServer.Enterprise.dll
Version: 12.0.3Syntax
public interface IDynamicDataTransfer
Properties
ContentTransferContext
The context for the import or export.
Declaration
IContentTransferContext ContentTransferContext { get; }
Property Value
Type | Description |
---|---|
IContent |
Methods
AddToExport(Guid, String, Boolean)
Adds an item from dynamic data store to export package.
Declaration
void AddToExport(Guid id, string storeName, bool keepIdentity)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id. |
System. |
storeName | Name of the store. |
System. |
keepIdentity | if set to |
Events
DeserializedObject
Occurs when a DDS object is deserialized but not yet saved to DDS. An eventhandler has possibility to alter object or cancel save operation.
Declaration
event EventHandler<SerializationEventArgs> DeserializedObject
Event Type
Type | Description |
---|---|
System. |
DeserializingFromXml
Occurs at deserilalization for items that has been modified by event Serializing
Declaration
event EventHandler<DeserializingItemEventArgs> DeserializingFromXml
Event Type
Type | Description |
---|---|
System. |
Remarks
This event is only raised when an objects serilization format has been relplace by an eventhandler
to Serializing
ImportCompleted
Occurs when [import completed].
Declaration
event EventHandler<EventArgs> ImportCompleted
Event Type
Type | Description |
---|---|
System. |
SerializingObject
Occurs when a DDS object is about to be serilaized to stream. An eventhandler has possibility to alter object or cancel save operation.
Declaration
event EventHandler<SerializationEventArgs> SerializingObject
Event Type
Type | Description |
---|---|
System. |
SerializingToXml
Occurs when a DDS object or a object reference has been serialized. An eventhandler
has possibility to replace the serialized format of the object. If an item is modified
then an eventhandler to Deserializing
Declaration
event EventHandler<SerializingItemEventArgs> SerializingToXml
Event Type
Type | Description |
---|---|
System. |