IContentItemMarkForPublish Method
|
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax void 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
- Type: Ingeniux.CMSIPublishingTarget
Publishing target to mark this on which to mark this version. - recursive
- Type: SystemBoolean
Whether to include descendants of the Page to which this version belongs. - mark
- Type: SystemBoolean
Whether to mark or unmark for publish. - versionToMark (Optional)
- Type: SystemInt32
[Missing <param name="versionToMark"/> documentation for "M:Ingeniux.CMS.IContentItem.MarkForPublish(Ingeniux.CMS.IPublishingTarget,System.Boolean,System.Boolean,System.Int32)"]
Remarks When "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