Interface IFeatureManager
Assembly: Volo.Abp.FeatureManagement.Domain.dll
Syntax
public interface IFeatureManager
Methods
DeleteAsync(string, string)
Declaration
Task DeleteAsync(string providerName, string providerKey)
Parameters
Type |
Name |
Description |
string |
providerName |
|
string |
providerKey |
|
Returns
GetAllAsync(string, string, bool)
Declaration
Task<List<FeatureNameValue>> GetAllAsync(string providerName, string providerKey, bool fallback = true)
Parameters
Returns
GetAllWithProviderAsync(string, string, bool)
Declaration
Task<List<FeatureNameValueWithGrantedProvider>> GetAllWithProviderAsync(string providerName, string providerKey, bool fallback = true)
Parameters
Returns
GetOrNullAsync(string, string, string, bool)
Declaration
Task<string> GetOrNullAsync(string name, string providerName, string providerKey, bool fallback = true)
Parameters
Returns
GetOrNullWithProviderAsync(string, string, string, bool)
Declaration
Task<FeatureNameValueWithGrantedProvider> GetOrNullWithProviderAsync(string name, string providerName, string providerKey, bool fallback = true)
Parameters
Returns
SetAsync(string, string, string, string, bool)
Declaration
Task SetAsync(string name, string value, string providerName, string providerKey, bool forceToSet = false)
Parameters
Returns
Extension Methods