Interface ISettingStore
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 |
System.Threading.Tasks.Task<TResult><System.Collections.Generic.List<T><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 |
System.Threading.Tasks.Task<TResult><string> |
|
Extension Methods