IOperationPermissionProvider.GetChildren() Method
Returns a list of IOperationPermissionProvider objects associated with the current object.
Namespace: DevExpress.ExpressApp.Security
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Returns
Type | Description |
---|---|
IEnumerable<IOperationPermissionProvider> | An IEnumerable<IOperationPermissionProvider> list of objects associated with the current object. |
Remarks
This method returns child permission providers associated with the current permission provider (not recursive). When implementing the IOperationPermissionProvider interface in a custom User class, return the list of associated Roles in this method. When implementing the IOperationPermissionProvider interface in a custom Role class, return the list of child Roles in this method.
See Also