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