Class SettingValueProvider
Inheritance
object
SettingValueProvider
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Settings
Assembly: Volo.Abp.Settings.dll
Syntax
public abstract class SettingValueProvider : ISettingValueProvider, ITransientDependency
Constructors
SettingValueProvider(ISettingStore)
Declaration
protected SettingValueProvider(ISettingStore settingStore)
Parameters
| Type | Name | Description |
|---|---|---|
| ISettingStore | settingStore |
Properties
Name
Declaration
public abstract string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
SettingStore
Declaration
protected ISettingStore SettingStore { get; }
Property Value
| Type | Description |
|---|---|
| ISettingStore |
Methods
GetAllAsync(SettingDefinition[])
Declaration
public abstract Task<List<SettingValue>> GetAllAsync(SettingDefinition[] settings)
Parameters
| Type | Name | Description |
|---|---|---|
| SettingDefinition[] | settings |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<TResult><System.Collections.Generic.List<T><SettingValue>> |
GetOrNullAsync(SettingDefinition)
Declaration
public abstract Task<string> GetOrNullAsync(SettingDefinition setting)
Parameters
| Type | Name | Description |
|---|---|---|
| SettingDefinition | setting |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<TResult><string> |