IUnityContainer RegisterType(Type t, params InjectionMember[] injectionMembers);What "injectionMembers" parameters are for?
The overload with the InjectionMember array is used, when you do not provide a configuration file, that the Unity container tells how to create an instance of the given type or if you want to create an instance on another way than defined in the configuration file. The overloads are used, when you want to configure an unity container without an configuration file. An InjectionMember can be an constructor,...