CustomHooksOnPublishComplete Method |
This method is invoked after a Publishing Task was completed
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux_API_Extensions_Development_Harness (in Ingeniux_API_Extensions_Development_Harness.dll) Version: 10.3.169
Syntax public void OnPublishComplete(
IPublishingTarget pubTarget,
bool fullPublish,
IEnumerable<PagePublishInfo> pagesToPublish,
IEnumerable<AssetPublishInfo> assetsToPublish,
Exception publishError,
IUserWriteSession session
)
Parameters
- pubTarget
- Type: IPublishingTarget
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.CustomHooks.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: IUserWriteSession
The session that must be used to perform tasks on additional objects
Implements
IPublishHooks.OnPublishComplete(IPublishingTarget, Boolean, IEnumerablePagePublishInfo, IEnumerableAssetPublishInfo, Exception, IUserWriteSession)Remarks When this action is invoked, the objects involved have yet to be saved to the Content Store.
See Also