Click or drag to resize

IAssetSourceEditionId Property


Gets the current Source Edition Id for the content item.

Assets are connected as Source Editions when they are edited in the CMS and saved using Save As.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
string SourceEditionId { get; }

Property Value

Type: String
Examples
Example of using SourceEditionId in a custom hook:
C#
if(session.Site.AssetFolder("af/5").Assets(out outVar).Any(a => a.SourceEditionId == "a/100")){
    //Additional Actions
}
See Also