IPublishHooksOnPublishComplete Method
|
This method is invoked after a Publishing Task was completed
Namespace: Ingeniux.CMS.Models.HooksAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxvoid 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 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
RemarksWhen this action is invoked, the objects involved have yet to be saved to the Content Store.
See Also