Interface ISettingStore
Namespace: Volo.Abp.Settings
Assembly: Volo.Abp.Settings.dll
Syntax
public interface ISettingStore
Methods
GetAllAsync(string[], string?, string?)
Declaration
Task<List<SettingValue>> GetAllAsync(string[] names, string? providerName, string? providerKey)
Parameters
Type | Name | Description |
---|---|---|
string[] | names | |
string | providerName | |
string | providerKey |
Returns
Type | Description |
---|---|
Task<List<SettingValue>> |
GetOrNullAsync(string, string?, string?)
Declaration
Task<string?> GetOrNullAsync(string name, string? providerName, string? providerKey)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | providerName | |
string | providerKey |
Returns
Type | Description |
---|---|
Task<string> |