Exemple #1
0
        /// <summary>
        /// 初始化
        /// </summary>
        public Global()
        {
            QLDebug             = new QLDebug();
            APIKeySecretManager = new Manager.APIKeySecretConfigManager();

            ConfigManager = WebApiConfig.Instance.Reload();
            SystemConfig  = new SystemConfigManager();
        }
Exemple #2
0
 public static APIKeySecretConfig GetConfigValue(string appId, string type)
 {
     try
     {
         return(private_GetConfigValue(appId, type));
     }
     catch (Exception ex)
     {
         QLDebug.WriteError(ex);
         return(null);
     }
 }