Go to the documentation of this file.00001 using System.Xml;
00002 using System.Configuration;
00003
00004 namespace N2.Configuration
00005 {
00009 [ConfigurationCollection(typeof(PluginInitializerElement))]
00010 public class PluginInitializerCollection : LazyRemovableCollection<PluginInitializerElement>
00011 {
00012 protected override void OnDeserializeRemoveElement(PluginInitializerElement element, XmlReader reader)
00013 {
00014 element.Type = reader.GetAttribute("type");
00015 }
00016 }
00017 }