Click or drag to resize

IContentItemWorkflowSuperAdminRightsEnabled Property


Gets and sets whether the content item has admin rights enabled. Admin rights will allow actions to the item that cannot normally be done by the user whose session is processing the request.

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

Property Value

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