Search code examples
asp.net-mvc-4ninjectninject-extensions

What is the equivalent of Ninject.IKernel in Unity


This may seem odd but what is the equivalent of Ninject.IKernel interface in Unity?

Thanks


Solution

  • In Unity that would be the Microsoft.Practices.Unity.IUnityContainer interface.

    This is the main interface in Unity which collects the methods for registration (RegisterType, RegisterInstance), resolvig (Resolve) , configuration (AddExtension) etc. See also on MSDN