是否可以从 xml 文档而不是从文件配置 ms Unity 容器?
是否可以从 xml 文档而不是从文件配置 ms Unity 容器?
Is it possible to configure ms Unity container from an xml document and NOT from a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定,但您可以在没有 .config 的情况下以编程方式进行配置,因此您可以拥有自己的 xml 文件、读取设置并以编程方式设置 Unity 容器。 遗憾的是,很多文档都没有涵盖这个方面。 在很多情况下,App.config 不可用或不合适。
编辑:
请参阅:http://msdn.microsoft.com/en-us /library/cc440941.aspx
Not sure about that, but you can configure programmatically without a .config, so you could have your own xml file, read settings and programmatically setup your Unity container. It's ashame this facet isn't covered in alot of the documentation. There are alot of scenarios where the App.config isn't available or appropriate.
Edit:
See: http://msdn.microsoft.com/en-us/library/cc440941.aspx
为什么不将 XMLDocument 保存在计算机本地的某个文件中,然后将该 XML 文件加载到 Unity 容器中。
除非保存 XML 文档有任何限制,否则我认为它会起作用。
Why don't you save the XMLDocument in some file localy on the machine and then load that XML file in the Unity container.
Unless there is any restriction in saving the XMLdocument i think it would work.