配置管理应用程序块

发布于 2024-07-08 17:53:36 字数 155 浏览 5 评论 0原文

有人有使用 Microsoft 配置管理应用程序块的经验吗? 这是他们网站上的一段较旧的代码,但看起来它可能作为存储/读取 .Net 应用程序配置值的标准方法很有用。 它是一个好/坏的工具,过度杀伤力,在框架的最新版本中可能有什么更好的选择,等等?

预先感谢您的回复。

Anyone have any experience using the Microsoft Configuration Management Application Block? This is an older piece of code off of their website, but seems like it might be useful as a standard way of storing/reading configuration values for .Net applications. Is it a good/bad tool, overkill, what better options might be available in more recent versions of the framework, etc?

Thanks in advance for any replies.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小鸟爱天空丶 2024-07-15 17:53:36

我从未感受到 .NET 标准配置功能的限制。 使用 appSettings 和 connectionString 部分可以轻松处理简单的配置 - 可加密如果需要的话。

对于自定义配置,请尝试以下操作: http://haacked.com/archive/2007/03/12/custom-configuration-sections-in-3-easy-steps.aspx

如果您需要在其他地方存储配置数据,请考虑通过实现您自己的 ProtectedConfigurationProvider 进行重定向:

I've never felt limited by .NET's standard Configuration features. Simple configuration is easily handled with appSettings and connectionString sections - encrypt-able if necessary.

For custom configuration, try this: http://haacked.com/archive/2007/03/12/custom-configuration-sections-in-3-easy-steps.aspx.

And if you need to store configuration data elsewhere, consider redirecting by implementing your own ProtectedConfigurationProvider:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文