This may seem odd but what is the equivalent of Ninject.IKernel
interface in Unity?
Thanks
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