mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
|
using System;
|
|
using System.Linq;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Configuration.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using SqlSugar.Extensions;
|
|
|
|
namespace CoreCms.Net.Configuration
|
|
{
|
|
/// <summary>
|
|
/// 获取Appsettings配置信息
|
|
/// </summary>
|
|
public class AppSettingsHelper
|
|
{
|
|
static IConfiguration Configuration { get; set; }
|
|
|
|
public AppSettingsHelper(string contentPath)
|
|
{
|
|
string Path = "appsettings.json";
|
|
Configuration = new ConfigurationBuilder().SetBasePath(contentPath).Add(new JsonConfigurationSource { Path = Path, Optional = false, ReloadOnChange = true }).Build();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 封装要操作的字符
|
|
/// AppSettingsHelper.GetContent(new string[] { "JwtConfig", "SecretKey" });
|
|
/// </summary>
|
|
/// <param name="sections">节点配置</param>
|
|
/// <returns></returns>
|
|
public static string GetContent(params string[] sections)
|
|
{
|
|
try
|
|
{
|
|
|
|
if (sections.Any())
|
|
{
|
|
return Configuration[string.Join(":", sections)];
|
|
}
|
|
}
|
|
catch (Exception) { }
|
|
|
|
return "";
|
|
}
|
|
|
|
}
|
|
} |