Class PermissionGrid
public class PermissionGrid : ModuleControlBase, IModuleControl
- Inheritance
-
objectComponentBasePermissionGrid
- Implements
- Inherited Members
Properties
EntityName
[Parameter]
public string EntityName { get; set; }
Property Value
- string
PermissionList
[Parameter]
public List<Permission> PermissionList { get; set; }
Property Value
- List<Permission>
PermissionNames
[Parameter]
public string PermissionNames { get; set; }
Property Value
- string
Permissions
[Parameter]
public string Permissions { get; set; }
Property Value
- string
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
RenderTreeBuilder
GetPermissionList()
public List<Permission> GetPermissionList()
Returns
- List<Permission>
GetPermissions()
public string GetPermissions()
Returns
- string
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.
Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
protected override Task OnInitializedAsync()
Returns
- Task
A System.Threading.Tasks.Task representing any asynchronous operation.