Retrieves the ancestry path of the asset within the CMS Assets Tree starting at the root Assets node and including the file name.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax string CMSPath(
bool forPublish = false
)
Function CMSPath (
Optional forPublish As Boolean = false
) As String
String^ CMSPath(
bool forPublish = false
)
abstract CMSPath :
?forPublish : bool
(* Defaults:
let _forPublish = defaultArg forPublish false
*)
-> string
Parameters
- forPublish (Optional)
- Type: SystemBoolean
[Missing <param name="forPublish"/> documentation for "M:Ingeniux.CMS.IAsset.CMSPath(System.Boolean)"]
Return Value
Type:
StringReturns a slash delimited string of the names of the folders in the ancestry of the content asset including the file name at the end.
Examples
Example of CMSPath in custom hook:
if(session.Site.Asset("a/535").CMSPath().contains("views")){
}
See Also