用于拦截的 Microsoft Unity XML 配置
我一直在尝试为 Unity 配置拦截(我想在对象方法调用之前和之后登录到 log4net)。
我使用过这个例子:
http://www.codeproject.com/KB/architecture /UnityAOPNHibernate.aspx
及其类似于此答案:
但我得到“无法识别的元素‘extensionConfig’。” - 在下面执行 GetSection("unity") 的行上。
IUnityContainer unityContainer = new UnityContainer();
var configurationSection =
(UnityConfigurationSection)ConfigurationManager.GetSection("unity")
请帮忙
I've been trying to configure interception for Unity (I want to log to log4net before and after object method calls).
I've used this example:
http://www.codeproject.com/KB/architecture/UnityAOPNHibernate.aspx
and its similar to this answer:
but I get "Unrecognized element 'extensionConfig'." - on the line where it does GetSection("unity") below.
IUnityContainer unityContainer = new UnityContainer();
var configurationSection =
(UnityConfigurationSection)ConfigurationManager.GetSection("unity")
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加一个部分扩展才能使其工作,
请参阅 Unity20.PDF 的第 60 页文档
You need to add a section extention for this to work
Refer page 60 of Unity20.PDF for the documentation