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.492
Syntax
void OnPublishComplete(
	IPublishingTarget pubTarget,
	bool fullPublish,
	IEnumerable<PagePublishInfo> pagesToPublish,
	IEnumerable<AssetPublishInfo> assetsToPublish,
	Exception publishError,
	IUserWriteSession session
)

Parameters

pubTarget  IPublishingTarget
The Publishing Target that submitted the publish task
fullPublish  Boolean
Whether it was a full or incremental publish
pagesToPublish  IEnumerablePagePublishInfo
Collection of information on Pages that was published
assetsToPublish  IEnumerableAssetPublishInfo
Collection of information on Assets to be published
publishError  Exception

[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  IUserWriteSession
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