Frapid.Backups.DbServer.GetConfig C# (CSharp) Méthode

GetConfig() private méthode

private GetConfig ( string key ) : string
key string
Résultat string
        private string GetConfig(string key)
        {
            string path = DbProvider.GetDbConfigurationFilePath(this.Tenant);
            path = HostingEnvironment.MapPath(path);

            return ConfigurationManager.ReadConfigurationValue(path, key);
        }