如何在ConfigurationElementCollection中按键找到

时间:2014-07-05 15:12:16

标签: c#

我有一个继承自ConfigurationElementCollection的类。我想添加一个名为FindByKey的函数,它返回带有特定键的ConfigurationElement。密钥将是一个字符串,我知道ConfigurationElement将密钥存储为对象。

有没有人有任何简单的代码来检测密钥中的元素?我确信一个简单的答案是基于知道ConfigurationElementCollection属性并在字符串和对象之间快速转换。

由于 Ĵ

2 个答案:

答案 0 :(得分:1)

我有一个今天完成的例子,因为我正在编写ConfigurationElementCollection类的扩展。它可能不是最优的,但它有一个类似于你要求的ContainsKey(键)的方法。

public class ConfigurationElementCollectionExtension : ConfigurationElementCollection, IConfigurationElementCollectionExtension
    {
        protected override ConfigurationElement CreateNewElement()
        {
            throw new NotImplementedException();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            throw new NotImplementedException();
        }

        bool IConfigurationElementCollectionExtension.ContainsKey<T>(T key)
        {
            bool returnValue = false;

            object[] keys = base.BaseGetAllKeys();

            string keyValue = key.ToString();
            int upperBound = keys.Length;
            List<string> items = new List<string>();

            for (int i = 0; i < upperBound; i++)
            {
                items.Add(keys[i].ToString());
            }

            int index = items.IndexOf(keyValue);
            if (index >= 0)
            {
                returnValue = true;
            }


            return returnValue;
        }
    }

答案 1 :(得分:0)

开始......那里有许多样品。

public class MYAppConfigTool {

    private Configuration _cfg;

    public Configuration GetConfig() {
        if (_cfg == null) {
            if (HostingEnvironment.IsHosted) // running inside asp.net ?
            { //yes so read web.config at hosting virtual path level
                _cfg = WebConfigurationManager.OpenWebConfiguration(HostingEnvironment.ApplicationVirtualPath);
            }
            else { //no, se we are testing or running exe version admin tool for example, look for an APP.CONFIG file
                //var x = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
                _cfg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
            }
        }
        return _cfg;
    }

    public AppSettingsSection GetAppSettings() {
        var cfg = GetConfig();
        return cfg == null ? null 
                           : cfg.AppSettings;
    }

    public string GetAppSetting(string key) {
        // null ref here means key missing.   DUMP is good.   ADD the missing key !!!!
        var cfg = GetConfig();
        if (cfg == null) return null;
        var appSettings = cfg.AppSettings;
        return appSettings == null ? null 
                                   : GetConfig().AppSettings.Settings[key].Value;
    }
}