Class RemoteSettingProvider
Inheritance
object
RemoteSettingProvider
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.AspNetCore.Mvc.Client
Assembly: Volo.Abp.AspNetCore.Mvc.Client.Common.dll
Syntax
public class RemoteSettingProvider : ISettingProvider, ITransientDependency
Constructors
RemoteSettingProvider(ICachedApplicationConfigurationClient)
Declaration
public RemoteSettingProvider(ICachedApplicationConfigurationClient configurationClient)
Parameters
| Type | Name | Description |
|---|---|---|
| ICachedApplicationConfigurationClient | configurationClient |
Properties
ConfigurationClient
Declaration
protected ICachedApplicationConfigurationClient ConfigurationClient { get; }
Property Value
| Type | Description |
|---|---|
| ICachedApplicationConfigurationClient |
Methods
GetAllAsync()
Declaration
public Task<List<SettingValue>> GetAllAsync()
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<TResult><System.Collections.Generic.List<T><SettingValue>> |
GetAllAsync(string[])
Declaration
public 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
public Task<string> GetOrNullAsync(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<TResult><string> |