MEF零件配置,存放在哪里?
在 ASP.NET
、.NET 4.0
、MEF
中,我将所有部分放在一个文件夹中,并使用 DirectoryCatalog
导入它们>。一切都很好。部分部件有相关配置。我不想将它们放在 web.config
中。也许一个好的方法是在该部分旁边添加一个 config
文件,并在末尾添加一个 .config
。
存储零件配置的最佳方式是什么?
In ASP.NET
, .NET 4.0
, MEF
, I put all parts in a folder and importing them using DirectoryCatalog
. Everything is fine. Some of part have related configurations. I don't want put them in web.config
. Maybe a good approach be a config
file just beside the part with a .config
added to the end.
What is the best way for storing part configuration ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够为每个 DLL 创建一个单独的配置文件,并成功读取密钥。但是当我尝试创建自定义配置部分时,我无法从 DLL 的应用程序配置中读取。它总是想从 MEF Consumer exe 中读取。
以下是从使用的 dll 自己的应用程序配置中读取的代码
由于我无法从自定义配置部分中读取内容,因此我最终使用 xml 并将自定义配置部分序列化为对象。由于您只是获取邮件服务器信息,因此使用 app.config 不会有任何问题。
I was able to create a separate config file for each DLL and successfully was able to read the keys. But when I tried to create a custom config section, I was not able to read from the DLL's app config. It always wanted to read from the MEF Consumer exe.
Here is the code to read from the consumed dll's own app config
Since I was not able to read from a custom config section, I ended up using xml and serializing the custom configuration section to an object. Since you are just getting the mail server info you will have no problem using app.config.