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.5.94
Syntax
bool IsExternal { get; }

Property Value

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