Interface ISettingProvider
Assembly: Volo.Abp.Settings.dll
Syntax
public interface ISettingProvider
Methods
GetAllAsync()
Declaration
Task<List<SettingValue>> GetAllAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task<TResult><System.Collections.Generic.List<T><SettingValue>> |
|
GetAllAsync(string[])
Declaration
Task<List<SettingValue>> GetAllAsync(string[] names)
Parameters
Type |
Name |
Description |
string[] |
names |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<TResult><System.Collections.Generic.List<T><SettingValue>> |
|
GetOrNullAsync(string)
Declaration
Task<string?> GetOrNullAsync(string name)
Parameters
Type |
Name |
Description |
string |
name |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<TResult><string> |
|
Extension Methods