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
)
Sub OnPublishComplete (
pubTarget As IPublishingTarget,
fullPublish As Boolean,
pagesToPublish As IEnumerable(Of PagePublishInfo),
assetsToPublish As IEnumerable(Of AssetPublishInfo),
publishError As Exception,
session As IUserWriteSession
)
void OnPublishComplete(
IPublishingTarget^ pubTarget,
bool fullPublish,
IEnumerable<PagePublishInfo^>^ pagesToPublish,
IEnumerable<AssetPublishInfo^>^ assetsToPublish,
Exception^ publishError,
IUserWriteSession^ session
)
abstract OnPublishComplete :
pubTarget : IPublishingTarget *
fullPublish : bool *
pagesToPublish : IEnumerable<PagePublishInfo> *
assetsToPublish : IEnumerable<AssetPublishInfo> *
publishError : Exception *
session : IUserWriteSession -> unit
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