!!!配置提供者 建立扁平化配置数据体系,以分布式配置中心为核心,支持基于key的索引读写,也支持Load/Save/Bind的实体模型转换。 key索引支持冒号分隔的多层结构,在配置中心中作为整个key存在,在文件配置中第一段表示不同文件。
大石头 authored at 2019-12-29 22:38:54
676.00 B
X
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace NewLife.Configuration
{
    /// <summary>分布式配置中心文件提供者</summary>
    public class HttpConfigProvider : ConfigProvider
    {
        /// <summary>服务器</summary>
        public String Server { get; set; }

        /// <summary>应用Key</summary>
        public String AppKey { get; set; }

        /// <summary>应用密钥</summary>
        public String Secret { get; set; }

        /// <summary>本地缓存配置数据,即使网络断开,仍然能够加载使用本地数据</summary>
        public Boolean LocalCache { get; set; }
    }
}