up vote 4 down vote favorite
share [g+] share [fb]

Hi guys Just a quick one.

In IOC's what does ResolveAll do?? I know that the offical answer is "Resolve all valid components that match this type." but does that mean that it will return any class that implements a given interface?

Cheers Anthony

link|improve this question

36% accept rate
What does IOC stand for in this context? – Seventh Element Apr 28 '10 at 8:03
feedback

3 Answers

It will return all classes that were registered for a given interface.

...and are not waiting on any references to be resolved. This bit me today!

link|improve this answer
+1 for the important condition :) – Igor Brejc Jun 30 '09 at 16:35
2  
Not precisely true. It will return components registered with given service and any other assignable service. So if you ask for container.ResolveAll<IController>(); it will also return services registered as IControllerWithCache – Krzysztof Koźmic Apr 28 '10 at 6:17
2  
Also the condition you mentioned is changed in v2.5. In v2.5 Windsor will try to resolve components that are waiting for dependencies (if the dependencies are provided inline, or via say DynamicParameters). Only if that attempt fails it will ignore the component and move to the next one. – Krzysztof Koźmic May 18 '10 at 10:09
Thanks Krzysztof! – Chris Bilson May 25 '10 at 13:48
feedback

It will return all classes that were registered for a given interface.

link|improve this answer
feedback

With Unity, ResolveAll resolves each registered mapping for an interface except for the default mapping.

so if you registered:

container.RegisterType<IInterface, ActualClassOne>(new ContainerControlledLifetimeManager());
container.RegisterType<IInterface, ActualClassOne>("Singleton", new ContainerControlledLifetimeManager());
container.RegisterType<IInterface, ActualClassOne>("Trans", new TransientLifetimeManager());

ResolveAll() will only give you an IEnumerable containing a resolved "Singleton" and "Trans" mappings

link|improve this answer
3  
Why the hell does it do that? This has always annoyed me. #Unity #Fail – RhysC Apr 28 '10 at 7:06
Subtle encouragement not to use an unnamed mapping? – LukeN Apr 28 '10 at 8:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.