获取Autofac中所有已注册的接口实现

时间:2012-12-27 21:24:09

标签: c# autofac

我需要从IComponentContext获取实现特定界面的已注册Type列表。

我不想要这些类型的实际实例,而是我可以获取实例的Type列表。

我想使用此列表在消息总线上生成订阅。

如何在Autofac中获取所有已注册的接口实现?

2 个答案:

答案 0 :(得分:13)

我想出来了 -

var types = scope.ComponentRegistry.Registrations
    .SelectMany(r => r.Services.OfType<IServiceWithType>(), (r, s) => new { r, s })
    .Where(rs => rs.s.ServiceType.Implements<T>())
    .Select(rs => rs.r.Activator.LimitType);

答案 1 :(得分:0)

使用 AutoFac 3.5.2 (基于这篇文章:http://bendetat.com/autofac-get-registration-types.html

首先实现这个功能:

    using Autofac;
    using Autofac.Core;
    using Autofac.Core.Activators.Reflection;
    ...

        private static IEnumerable<Type> GetImplementingTypes<T>(ILifetimeScope scope)
        {
            //base on http://bendetat.com/autofac-get-registration-types.html article

            return scope.ComponentRegistry
                .RegistrationsFor(new TypedService(typeof(T)))
                .Select(x => x.Activator)
                .OfType<ReflectionActivator>()
                .Select(x => x.LimitType);
        }

然后假设您有builder

var container = builder.Build();
using (var scope = container.BeginLifetimeScope())
{
   var types = GetImplementingTypes<T>(scope);
}