IAssetHooksOnAfterRegionRootCopyAsset Method
|
This method is invoked after a Region Root Asset was cloned into another Region Root Asset, with lingual maps established between the two Regions.
Namespace:
Ingeniux.CMS.Models.Hooks
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax void OnAfterRegionRootCopyAsset(
IAssetItem sourcecontentItem,
IAssetItem newcontentItem,
IAssetFolder targetcontentItem,
string targetLocale,
ILingualPageMap[] lingualMaps,
IUserWriteSession session
)
Sub OnAfterRegionRootCopyAsset (
sourcecontentItem As IAssetItem,
newcontentItem As IAssetItem,
targetcontentItem As IAssetFolder,
targetLocale As String,
lingualMaps As ILingualPageMap(),
session As IUserWriteSession
)
void OnAfterRegionRootCopyAsset(
IAssetItem^ sourcecontentItem,
IAssetItem^ newcontentItem,
IAssetFolder^ targetcontentItem,
String^ targetLocale,
array<ILingualPageMap^>^ lingualMaps,
IUserWriteSession^ session
)
abstract OnAfterRegionRootCopyAsset :
sourcecontentItem : IAssetItem *
newcontentItem : IAssetItem *
targetcontentItem : IAssetFolder *
targetLocale : string *
lingualMaps : ILingualPageMap[] *
session : IUserWriteSession -> unit
Parameters
- sourcecontentItem
- Type: Ingeniux.CMSIAssetItem
The content item that was copied. - newcontentItem
- Type: Ingeniux.CMSIAssetItem
The new content item that was created. - targetcontentItem
- Type: Ingeniux.CMSIAssetFolder
The target reference location content item. - targetLocale
- Type: SystemString
The region code of the target Region Root's language. - lingualMaps
- Type: Ingeniux.CMSILingualPageMap
[Missing <param name="lingualMaps"/> documentation for "M:Ingeniux.CMS.Models.Hooks.IAssetHooks.OnAfterRegionRootCopyAsset(Ingeniux.CMS.IAssetItem,Ingeniux.CMS.IAssetItem,Ingeniux.CMS.IAssetFolder,System.String,Ingeniux.CMS.ILingualPageMap[],Ingeniux.CMS.IUserWriteSession)"]
- session
- Type: Ingeniux.CMSIUserWriteSession
The session that must be used to perform tasks on additional objects.
Remarks When this action is invoked, the objects involved have yet to be saved to the Content Store.
See Also