Click or drag to resize

IAssetIsExternal Property


Checks whether the asset is referencing an external asset.

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

Property Value

Boolean
Example
Example of using IsExternal in a custom hook:
C#
if(contentItem.IsExternal){
    //Additional Actions
}
See Also