Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00005 public class PluginInitializerElement : NamedElement
00006 {
00007 public PluginInitializerElement()
00008 {
00009 }
00010
00011 public PluginInitializerElement(string name, string type)
00012 {
00013 Name = name;
00014 Type = type;
00015 }
00016
00017 [ConfigurationProperty("type", IsRequired = true)]
00018 public string Type
00019 {
00020 get { return (string)base["type"]; }
00021 set { base["type"] = value; }
00022 }
00023 }
00024 }