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.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxstring SourceEditionId { get; }ReadOnly Property SourceEditionId As String
Get
property String^ SourceEditionId {
String^ get ();
}abstract SourceEditionId : string with get
Property Value
String
Example
Example of using SourceEditionId in a custom hook:
if(session.Site.AssetFolder("af/5").Assets(out outVar).Any(a => a.SourceEditionId == "a/100")){
}
See Also