Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IOperationPermissionProvider.GetChildren() Method

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

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.v21.1.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