码迷,mamicode.com
首页 > 其他好文 > 详细

Autofac复杂案例

时间:2019-12-26 09:29:06      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:vat   imp   make   pre   ted   invoke   泛型   assembly   uil   

注册泛型接口的类:

builder.RegisterAssemblyTypes(typeof(IEventHandler<>).Assembly)
                .Where(t => t.IsClass && t.GetInterfaces().Any(i=>i.IsGenericType && i.GetGenericTypeDefinition()==typeof(IEventHandler<>)))
                .AsSelf()
                .AsImplementedInterfaces();

解析泛型接口:

var handlerType = typeof(IEventHandler<>).MakeGenericType(typeof(TEvent));  //TEvent是泛型
var handlerInstances = Activator.Invoke(typeof(IEnumerable<>).MakeGenericType(handlerType)) as IEnumerable;

Autofac复杂案例

标签:vat   imp   make   pre   ted   invoke   泛型   assembly   uil   

原文地址:https://www.cnblogs.com/fanfan-90/p/12100239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!