如何使用 MEF 注入记录器实例?
是否可以使用托管扩展性框架注入记录器类对象的实例?请显示示例代码片段。
Is it possible to inject an instance of logger class object using Managed Extensibility Framework? Please show a sample code snippet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用构造函数注入:
显然(如果您了解MEF)其他类型必须导出
ILogger
...或者,您也可以使用<属性注入,尽管我发现语义模糊:
Yes, using Constructor Injection:
Obviously (if you know MEF) some other type must Export
ILogger
...Alternatively, you can also use Property Injection, although I find the semantics vague: