Class NullSettingStore
Inheritance
object
NullSettingStore
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
[Dependency(TryRegister = true)]
public class NullSettingStore : ISettingStore, ISingletonDependency
Constructors
NullSettingStore()
Declaration
public NullSettingStore()
Properties
Logger
Declaration
public ILogger<NullSettingStore> Logger { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.Extensions.Logging.ILogger<TCategoryName><NullSettingStore> |
Methods
GetAllAsync(string[], string?, string?)
Declaration
public 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
public 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> |