Click or drag to resize

IContentItemWorkflowSuperInWorkflowTransition Property


Gets and sets whether the content item is being accessed within the bounds of a workflow transition.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
bool InWorkflowTransition { get; set; }

Property Value

Type: Boolean
Examples
Example checking InWorkflowTransition in a custom hook:
C#
var contentItem = session.Site.Asset("a/100") as IContentItemWorkflowSuper;
if(contentItem.InWorkflowTransition){
    //Additional Actions
}
See Also