Interface IPermissionStore
Namespace: Volo.Abp.Authorization.Permissions
Assembly: Volo.Abp.Authorization.Abstractions.dll
Syntax
public interface IPermissionStore
Methods
IsGrantedAsync(string, string, string)
Declaration
Task<bool> IsGrantedAsync(string name, string providerName, string providerKey)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | providerName | |
string | providerKey |
Returns
Type | Description |
---|---|
Task<bool> |
IsGrantedAsync(string[], string, string)
Declaration
Task<MultiplePermissionGrantResult> IsGrantedAsync(string[] names, string providerName, string providerKey)
Parameters
Type | Name | Description |
---|---|---|
string[] | names | |
string | providerName | |
string | providerKey |
Returns
Type | Description |
---|---|
Task<MultiplePermissionGrantResult> |