Frapid.Backups.DbServer.GetConfig C# (CSharp) Method

GetConfig() private method

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

            return ConfigurationManager.ReadConfigurationValue(path, key);
        }