IContentItemMarkForPublish Method
|
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxvoid MarkForPublish(
IPublishingTarget pubTarget,
bool recursive,
bool mark,
int versionToMark = 0
)
Sub MarkForPublish (
pubTarget As IPublishingTarget,
recursive As Boolean,
mark As Boolean,
Optional versionToMark As Integer = 0
)
void MarkForPublish(
IPublishingTarget^ pubTarget,
bool recursive,
bool mark,
int versionToMark = 0
)
abstract MarkForPublish :
pubTarget : IPublishingTarget *
recursive : bool *
mark : bool *
?versionToMark : int
(* Defaults:
let _versionToMark = defaultArg versionToMark 0
*)
-> unit Parameters
- pubTarget IPublishingTarget
- Publishing target to mark this on which to mark this version.
- recursive Boolean
-
Whether to include descendants of the Page to which this version belongs.
- mark Boolean
- Whether to mark or unmark for publish.
- versionToMark Int32 (Optional)
[Missing <param name="versionToMark"/> documentation for "M:Ingeniux.CMS.IContentItem.MarkForPublish(Ingeniux.CMS.IPublishingTarget,System.Boolean,System.Boolean,System.Int32)"]
RemarksWhen "mark" is true, and "recursive" is true, this is not a version marked for publish, but pages marked for publish.
The Page to which this version belongs and its descendants are marked on the Publishing Target,
with their latest version.
When "mark" is true and "recursive" is false, then it is this version's version number marked on the publishing target.
See Also