IContentItemCheckInSingleWithNoValidate Method
|
Checks in the page itself without applying validations before check-in.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax void CheckInSingleWithNoValidate(
IEnumerable<string> pubTargets = null,
string comments = ""
)
Sub CheckInSingleWithNoValidate (
Optional pubTargets As IEnumerable(Of String) = Nothing,
Optional comments As String = ""
)
void CheckInSingleWithNoValidate(
IEnumerable<String^>^ pubTargets = nullptr,
String^ comments = L""
)
abstract CheckInSingleWithNoValidate :
?pubTargets : IEnumerable<string> *
?comments : string
(* Defaults:
let _pubTargets = defaultArg pubTargets null
let _comments = defaultArg comments ""
*)
-> unit
Parameters
- pubTargets (Optional)
- Type: System.Collections.GenericIEnumerableString
Collection of publishing targets on which to check in this page. These publishing targets will mark the page on its latest version. If not specified, no publishing target will mark the page on its latest version. - comments (Optional)
- Type: SystemString
The comments for the check in. Should be the description of the changes and their purpose.
Remarks Check-in validations are in place to make sure that the content of checked-in pages meets the criteria to be ready for publishing. Therefore, use this method only when necessary.
See Also