IPublishingManagerCreateTask Method
|
Creates a new publishing task and pushes this task into publishing queue.
Tasks in the queue are executed in sequence and purged after being executed.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IPublishingTask CreateTask(
IEnumerable<IPublishingPageEntry> pages,
IEnumerable<IPublishingContentItemEntry> assets,
bool incremental,
IPublishingTarget pubTarget,
Action<IEnumerable<IPublishingPageEntry>, IEnumerable<IPublishingContentItemEntry>> postPageFilterCallback,
bool replicate = true,
bool alwaysIncludePages = true,
bool alwaysIncludeAssets = true
)
Function CreateTask (
pages As IEnumerable(Of IPublishingPageEntry),
assets As IEnumerable(Of IPublishingContentItemEntry),
incremental As Boolean,
pubTarget As IPublishingTarget,
postPageFilterCallback As Action(Of IEnumerable(Of IPublishingPageEntry), IEnumerable(Of IPublishingContentItemEntry)),
Optional replicate As Boolean = true,
Optional alwaysIncludePages As Boolean = true,
Optional alwaysIncludeAssets As Boolean = true
) As IPublishingTask
IPublishingTask^ CreateTask(
IEnumerable<IPublishingPageEntry^>^ pages,
IEnumerable<IPublishingContentItemEntry^>^ assets,
bool incremental,
IPublishingTarget^ pubTarget,
Action<IEnumerable<IPublishingPageEntry^>^, IEnumerable<IPublishingContentItemEntry^>^>^ postPageFilterCallback,
bool replicate = true,
bool alwaysIncludePages = true,
bool alwaysIncludeAssets = true
)
abstract CreateTask :
pages : IEnumerable<IPublishingPageEntry> *
assets : IEnumerable<IPublishingContentItemEntry> *
incremental : bool *
pubTarget : IPublishingTarget *
postPageFilterCallback : Action<IEnumerable<IPublishingPageEntry>, IEnumerable<IPublishingContentItemEntry>> *
?replicate : bool *
?alwaysIncludePages : bool *
?alwaysIncludeAssets : bool
(* Defaults:
let _replicate = defaultArg replicate true
let _alwaysIncludePages = defaultArg alwaysIncludePages true
let _alwaysIncludeAssets = defaultArg alwaysIncludeAssets true
*)
-> IPublishingTask
Parameters
- pages
- Type: System.Collections.GenericIEnumerableIPublishingPageEntry
Collection of pages to be published - assets
- Type: System.Collections.GenericIEnumerableIPublishingContentItemEntry
[Missing <param name="assets"/> documentation for "M:Ingeniux.CMS.IPublishingManager.CreateTask(System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry},System.Boolean,Ingeniux.CMS.IPublishingTarget,System.Action{System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry}},System.Boolean,System.Boolean,System.Boolean)"]
- incremental
- Type: SystemBoolean
Incremental or full publish. Incremental publishes only add or update pages and components that have been added or changed. Full publishes publish all marked pages and components; delete pages and components that are no longer marked; and clean up assets at the publishing target location. - pubTarget
- Type: Ingeniux.CMSIPublishingTarget
The target to publish pages to - postPageFilterCallback
- Type: SystemActionIEnumerableIPublishingPageEntry, IEnumerableIPublishingContentItemEntry
The action to call after filter out the Pages that don't need to be published - replicate (Optional)
- Type: SystemBoolean
Whether or not to perform replication after the publish completes. Default is to perform replication. - alwaysIncludePages (Optional)
- Type: SystemBoolean
[Missing <param name="alwaysIncludePages"/> documentation for "M:Ingeniux.CMS.IPublishingManager.CreateTask(System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry},System.Boolean,Ingeniux.CMS.IPublishingTarget,System.Action{System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry}},System.Boolean,System.Boolean,System.Boolean)"]
- alwaysIncludeAssets (Optional)
- Type: SystemBoolean
[Missing <param name="alwaysIncludeAssets"/> documentation for "M:Ingeniux.CMS.IPublishingManager.CreateTask(System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry},System.Boolean,Ingeniux.CMS.IPublishingTarget,System.Action{System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingPageEntry},System.Collections.Generic.IEnumerable{Ingeniux.CMS.IPublishingContentItemEntry}},System.Boolean,System.Boolean,System.Boolean)"]
Return Value
Type:
IPublishingTaskThe created and queue publishing task
Exceptions Exception | Condition |
---|
InvalidOperationException | During an incremental publish, when there are no pages or components that have been added or updated since the most-recent publish. |
Remarks Publish Tasks are centered around pages and components, not assets, for incremental publishes.
If no pages or components changed since last publish, it doesn't matter whether any assets are changed. The publish will not occur.
See Also