0

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

Thanks

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Jack M
  • 2,564
  • 4
  • 28
  • 49

1 Answers1

1

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

nemesv
  • 138,284
  • 16
  • 416
  • 359