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.6.492
Syntax
bool InWorkflowTransition { get; set; }

Property Value

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