Interface IPermissionStore
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 |
System.Threading.Tasks.Task<TResult><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
Extension Methods