当前位置:  开发笔记 > 后端 > 正文

是否可以在自定义配置部分中使用任意XML?

如何解决《是否可以在自定义配置部分中使用任意XML?》经验,为你挑选了1个好方法。

假设我在ASP.NET web.config中定义了一个配置部分,如:



  
    
      

假设我MySettings : System.Configuration.ConfigurationSection 没有 定义unknownProperty:

using System.Configuration;

namespace MyCompany.MyProject.Configuration
{
    public class MySettings : ConfigurationSection
    {
      public MySettings() { }

      [ConfigurationProperty("knownProperty", DefaultValue="default_value")]
      public string KnownProperty
      {
        get { return (string)this["knownProperty"]; }
      }

      // I'm not defining unknownProperty here on purpose
    }
}

无论如何运行应用程序而没有得到配置错误抱怨无法识别的属性'unknownProperty'?

另外,我可以通过一种方法来捕获该错误并忽略它,如果可能的话.

换句话说,我希望XML具有未在其绑定的匹配类型中定义的属性.可以在现有Configuration API的范围内完成吗?



1> Daniel..:

我很确定它是可能的,因为一些内置的部分,如WCF和成员资格,这样做没有错误.OnDeserializeUnrecognizedAttribute是否满足您的需求?

protected override bool OnDeserializeUnrecognizedAttribute(string name, string value){
//don't call base to avoid error
}

推荐阅读
mobiledu2402851173
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有