I have multiple (generic) types registered with Autofac, all "implementing" a (generic) marker interface. Basically this is the registration and I can't change it (to be e.g. named):
builder.RegisterGeneric(typeof(MyType1<>)).As(typeof(IMarkerInterface<>));
builder.RegisterGeneric(typeof(MyType2<>)).As(typeof(IMarkerInterface<>));
builder.RegisterGeneric(typeof(MyType3<>)).As(typeof(IMarkerInterface<>));
where builder is a ContainerBuilder instance. Is there a proper way of resolving a type registered as IMarkerInterface<> if I only know the implementation's (type) name (e.g. MyAssembly.MyType2)? The registration can simply be selected from IComponentContext.ComponentRegistry.Registrations with a LINQ-query, so in the end I also have the registration object, just can't activate it:
- registration.Activator.ActivateInstance() needs the constructor parameters, but I don't know these (although they can be injected by Autofac if resolved)
- There used to be a method fully suitable for me (as I have the registration id and the ICompontentContext instance), but it seems that now (v2.5.2.830) it's gone.
- As the Service type of the type is the marker interface, I can't resolve by service type as it would resolve the one implementation that happens to be on the top.
A workaround would be I think to mark the types with an interface derived from IMarkerInterface<>, so they would all have unique services too. Another one would be to resolve IEnumerable>, but this would resolve all the implementations, not just the one that's needed (although this has a negligible impact on performance, it's still superfluous). But I don't know if this is the best solution, I feel there should be a more straightforward way.
Any help would be greatly appreciated!
Solution
Because I can't answer yet, here: Just mimicking the implementation Autofac.ResolutionExtensions once had, this code works (and I frankly don't know why: constructor params get properly filled; this should mean I've misunderstood what the "parameters" argument is).
registration.Activator.ActivateInstance(_componentContext, Enumerable.Empty<Parameter>());
where registration is the IComponentRegistration instance, corresponding to the implementation I wanted to instantiate. Apparently this also needs something to "initialize" the container with the current type params. A call to
_componentContext.IsRegistered<IMarkerInterface<TypeParameter>>()
is enough.
Thanks for Sebastien Weber and kvalcanti for the inputs!