Click or drag to resize

IAssetAdminContentDirectCheckedOutVersion Property


Gets the checked out version of the context asset.

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

Property Value

AssetVersion
Example
Example getting the checked out version of an asset in custom hook:
C#
var assetItem = session.Site.Asset("a/100") as IAssetAdminContentDirect;
AssetVersion checkedOut = assetItem.CheckedOutVersion;
See Also