gpt4 book ai didi

asp.net-mvc-5 - asp.net identity 2.1 使用 StructureMap 注入(inject) IAuthenticationManager

转载 作者:行者123 更新时间:2023-12-04 16:31:13 25 4
gpt4 key购买 nike

任何人都可以指出一些样本的方向或如何实现这一点的说明吗?

最佳答案

我没有使用过 StructureMap,但我使用 Autofac 和 SimpleInjector 完成了这项工作。

Autofac 注册看起来像这样:

builder.Register(c => HttpContext.Current.GetOwinContext().Authentication).As<IAuthenticationManager>();

SimpleInjector 中的注册如下所示:
container.RegisterPerWebRequest(() => HttpContext.Current.GetOwinContext().Authentication);

通过查看 StructureMap 教程,我可以猜测注册会是这样的:
ForRequestedType<IAuthenticationManager>()
.TheDefaultIs(() => HttpContext.Current.GetOwinContext().Authentication)

关于asp.net-mvc-5 - asp.net identity 2.1 使用 StructureMap 注入(inject) IAuthenticationManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25545298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com