.NET MVC - 如何利用自定义设置提供程序?
我创建了一个自定义设置提供程序,将我的应用程序设置存储在单独的 XML 文件中。我已通过 Visual Studio 创建设置和值(解决方案
-> 我的项目
-> 设置
)并指定了我的自定义提供程序。
它似乎没有被应用程序“使用”。我可以在自定义提供程序中的任何位置放置断点,但它们不会被触及...我在这里遗漏了什么吗? 如何使用我的自定义设置提供程序?
- 创建提供程序
- 在 VS 中输入设置+对自定义提供程序的引用
- ?
I have created a custom settings provider to store my application settings in a separate XML file. I've created settings and values through Visual studio (Solution
-> My Project
-> Settings
) and specified my custom provider.
It doesn't seem to be 'used' by the application. I can put breakpoints everywhere in my custom provider, but they are not touched... Am I missing something here? How do I use my custom settings provider?
- Create the provider
- Enter settings + reference to custom provider in VS
- ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看本教程。听起来这就是你正在尝试做的事情。
它适用于 Winforms,我不确定它是如何翻译的,但请确保您实际上将每个不同的设置设置为使用自定义提供程序。在 Winforms 中,这是作为每个设置的
Provider
属性来完成的。Take a look at this tutorial. It sounds like this is what you're trying to do.
It's for Winforms, and I'm not sure how it translates, but make sure you are actually setting each different setting to use the custom provider. In Winforms, this is done as a
Provider
property on each of the settings.