Frapid.Backups.DbServer.GetConfig C# (CSharp) 메소드

GetConfig() 개인적인 메소드

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

            return ConfigurationManager.ReadConfigurationValue(path, key);
        }