Autofac复杂案例
Posted fanfan-90
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Autofac复杂案例相关的知识,希望对你有一定的参考价值。
注册泛型接口的类:
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复杂案例的主要内容,如果未能解决你的问题,请参考以下文章