You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If user creates improper configuration like this: _kernel.Bind<IService>();
or this _kerner.Bind<IService, ServiceImplementation>();
and then tries resolve service that depends on IService, NullReferenceExption is reported.
It is caused by not setting ProviderCallback in BindingConfiguration class.
The text was updated successfully, but these errors were encountered:
If user creates improper configuration like this:
_kernel.Bind<IService>();
or this
_kerner.Bind<IService, ServiceImplementation>();
and then tries resolve service that depends on IService, NullReferenceExption is reported.
It is caused by not setting ProviderCallback in BindingConfiguration class.
The text was updated successfully, but these errors were encountered: