我想在app.config文件中添加自定义配置部分,如下所示
<Companies>
<Company name="" code=""/>
<Company name="" code=""/>
</Companies>
<Employees>
<Employee name="" Des="" addr="" sal=""/>
<Employee name="" Des="" addr="" sal=""/>
</Employeess>
<Departments>
<Department Id="" Projects=""/>
</Departments>
<Projects>
<Project Path=""/>
</Projects>
在“部门”部分,它指的是“项目”部分。
有人可以告诉我这样做吗?以及如何在我的代码中访问它?
@Bhaskar:请找到您评论的代码。
public class RegisterCompaniesConfig : ConfigurationSection
{
public static RegisterCompaniesConfig GetConfig()
{
return (RegisterCompaniesConfig)System.Configuration.ConfigurationManager.GetSection("RegisterCompanies")?? new RegisterCompaniesConfig();
}
[System.Configuration.ConfigurationProperty("Companies")]
public Companies Companies
{
get
{
object o = this["Companies"]; return o as Companies;
}
}
}
public class Companies : ConfigurationElementCollection
{
public Company this[int index]
{ get { return base.BaseGet(index) as Company; }
set
{
if (base.BaseGet(index) != null)
{
base.BaseRemoveAt(index);
}
this.BaseAdd(index, value);
}
}
protected override System.Configuration.ConfigurationElement CreateNewElement()
{ return new Company();
}
protected override object GetElementKey(System.Configuration.ConfigurationElement element)
{ return ((Company)element).Name; }
}
public class Company : ConfigurationElement
{
[ConfigurationProperty("name", IsRequired = true)]
public string Name { get { return this["name"] as string; } }
[ConfigurationProperty("code", IsRequired = true)]
public string Code { get { return this["code"] as string; } }
}
答案 0 :(得分:3)
你应该在CodeProject上查看Jon Rista关于.NET 2.0配置的三部分系列文章。
强烈推荐,写得很好,非常有帮助!我已经学会了如何处理这些优秀文章中的自定义配置部分。
答案 1 :(得分:0)
我将所有配置管理代码都基于我收集的类here。这是一个example,这里有一些documentation。请注意,这是我个人在博客文章中重构的代码,不再在线提供。
答案 2 :(得分:-1)