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