00001 using System.Configuration; 00002 00003 namespace N2.Configuration 00004 { 00008 [ConfigurationCollection(typeof(InterfacePluginElement))] 00009 public class InterfacePluginCollection : LazyRemovableCollection<InterfacePluginElement> 00010 { 00011 protected override void OnDeserializeRemoveElement(InterfacePluginElement element, System.Xml.XmlReader reader) 00012 { 00013 element.Type = reader.GetAttribute("type"); 00014 } 00015 } 00016 }