Skip to main content
.NET 6.0+

IOperationPermissionProvider.GetChildren() Method

Returns a list of IOperationPermissionProvider objects associated with the current object.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

IEnumerable<IOperationPermissionProvider> GetChildren()

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