Click or drag to resize

IPublishHooksOnPublishComplete Method


This method is invoked after a Publishing Task was completed

Namespace:  Ingeniux.CMS.Models.Hooks
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax
void OnPublishComplete(
	IPublishingTarget pubTarget,
	bool fullPublish,
	IEnumerable<PagePublishInfo> pagesToPublish,
	IEnumerable<AssetPublishInfo> assetsToPublish,
	Exception publishError,
	IUserWriteSession session
)

Parameters

pubTarget
Type: Ingeniux.CMSIPublishingTarget
The Publishing Target that submitted the publish task
fullPublish
Type: SystemBoolean
Whether it was a full or incremental publish
pagesToPublish
Type: System.Collections.GenericIEnumerablePagePublishInfo
Collection of information on Pages that was published
assetsToPublish
Type: System.Collections.GenericIEnumerableAssetPublishInfo
Collection of information on Assets to be published
publishError
Type: SystemException

[Missing <param name="publishError"/> documentation for "M:Ingeniux.CMS.Models.Hooks.IPublishHooks.OnPublishComplete(Ingeniux.CMS.IPublishingTarget,System.Boolean,System.Collections.Generic.IEnumerable{Ingeniux.CMS.Event.PagePublishInfo},System.Collections.Generic.IEnumerable{Ingeniux.CMS.Event.AssetPublishInfo},System.Exception,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