我有一个类“ImageElementCollection:ConfigurationElementCollection”,其中包含“ImageElement:ConfigurationElement”类的元素。
在 StackOverflow 上使用其他一些非常聪明的人的建议,我已经弄清楚了如何在我的程序中使用这些项目:
MonitorConfig Config = (MonitorConfig)ConfigurationManager.GetSection("MonitorConfig");
但是,当我尝试访问此集合中的项目时...
foreach (var image in Config.Images) Debug.WriteLine(image.Name);
...我最终在 Name 属性下得到了波浪线,因为尽管我尽了最大努力,但“图像”已被声明为对象而不是 ImageElement。
这是我在声明中做错了什么,还是每个人都只是通过在上面的那个 foreach 中将“var”交换为“ImageElement”来处理?
配置处理程序代码如下:
public class MonitorConfig : ConfigurationSection
{
[ConfigurationProperty("Frequency", DefaultValue = 5D, IsRequired = false)]
public double Frequency
{
get { return (double)this["Frequency"]; }
}
[ConfigurationProperty("Images", IsRequired = false)]
public ImageElementCollection Images
{
get { return (ImageElementCollection)this["Images"]; }
}
}
[ConfigurationCollection(typeof(ImageElement), AddItemName = "Image")]
public class ImageElementCollection : ConfigurationElementCollection
{
public ImageElement this[object elementKey]
{
get { return (ImageElement)BaseGet(elementKey); }
}
public void Add(ImageElement element)
{
base.BaseAdd(element);
}
protected override ConfigurationElement CreateNewElement()
{
return new ImageElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((ImageElement)element).Name;
}
}
public class ImageElement : ConfigurationElement
{
[ConfigurationProperty("Name", IsRequired = true, IsKey = true)]
public string Name
{
get { return (string)this["Name"]; }
}
}