2
我有同樣的問題描述here沒有答案,只是使用Unity。ASP.NET身份2 - 注入ISecureDataFormat <>
我想在最新的VS2013(update 2)SPA/Web Api模板中註冊ISecureDataFormat<>
。
我已經試過
container.RegisterType(typeof(ISecureDataFormat<>), typeof(SecureDataFormat<>));
container.RegisterType<ISecureDataFormat<AuthenticationTicket>, SecureDataFormat<AuthenticationTicket>>();
container.RegisterType<ISecureDataFormat<AuthenticationTicket>, TicketDataFormat>();
它「作品」,但不是真的因爲那抱怨在樹中的下depenedency,IDataSerializer ......再接下來IDataProtector,對此我沒有發現實施。