IAssetSecurityManagerPermissions Method
|
Retrieves all permission entries for a given asset path
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<IAssetNodeLevelPermission> Permissions(
string assetPath,
EnumAssetType assetType,
out bool isInherited
)
Function Permissions (
assetPath As String,
assetType As EnumAssetType,
<OutAttribute> ByRef isInherited As Boolean
) As IEnumerable(Of IAssetNodeLevelPermission)
IEnumerable<IAssetNodeLevelPermission^>^ Permissions(
String^ assetPath,
EnumAssetType assetType,
[OutAttribute] bool% isInherited
)
abstract Permissions :
assetPath : string *
assetType : EnumAssetType *
isInherited : bool byref -> IEnumerable<IAssetNodeLevelPermission> Parameters
- assetPath String
- The path of asset whose permission information you want to retrieve. The path must be relative to the XML folder and cannot start a "\" character.
- assetType EnumAssetType
- The type of asset in the path
- isInherited Boolean
- An output parameter that is true if the permissions returned are inherited from the parent folder
Return Value
IEnumerableIAssetNodeLevelPermissionCollection of permissions for the given asset path
See Also