从配置中心加载连接字符串,并支持定时刷新
大石头 authored at 2020-10-18 20:12:00
319.00 B
X
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace NewLife.Configuration
{
    /// <summary>获取配置委托。便于集成配置中心</summary>
    /// <param name="key"></param>
    /// <returns></returns>
    public delegate String GetConfigCallback(String key);
}