blazor identityrole code example
Example 1: blazor sample ujsing cliam policy
@page "/debug"
@attribute [Authorize(Policy = "IsDeveloper")]
Example 2: blazor sample ujsing cliam policy
<AuthorizeView Policy="IsDeveloper">
<p>You can only see this if you satisfy the IsDeveloper policy.</p>
</AuthorizeView>