How can I inject IPrincipal using TinyIoC?

362 Views Asked by At

This line:

container.Register<IPrincipal>().UsingConstructor(() => HttpContext.Current.User);

throws the following exception:

Cannot register type System.Security.Principal.IPrincipal - abstract classes or interfaces are not valid implementation types for SingletonFactory.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: Tss.Rhnncp.DietPlanner.Bootstap.TinyIoCRegistrationTypeException: Cannot register type System.Security.Principal.IPrincipal - abstract classes or interfaces are not valid implementation types for SingletonFactory.

Source Error:

Line 2663: throw new TinyIoCRegistrationTypeException(registerImplementation, "SingletonFactory");
Line 2664:
Line 2665:  if (!IsValidAssignment(registerType, registerImplementation))
Line 2666:      throw new TinyIoCRegistrationTypeException(registerImplementation, "SingletonFactory");
Line 2667:
1

There are 1 best solutions below

1
On

I'm not familiar with TinyIoc, but I expect you need something like this:

container.Register<IPrincipal>(() => HttpContext.Current.User);