gpt4 book ai didi

api - CaSTLe Windsor Fluent Registration - Pick() 有什么作用?

转载 作者:行者123 更新时间:2023-12-04 13:56:00 26 4
gpt4 key购买 nike

当使用城堡温莎的自动注册时,我看到人们在做类似的事情

_container.Register(
AllTypes.Pick().FromAssembly(Assembly.GetExecutingAssembly())
.WithService.FirstInterface());

对于我的生活,我无法弄清楚 Pick() 方法的作用,也找不到任何文档。谁能给我解释一下?

最佳答案

Pick(IEnumerable<Type>) is a synonym for From(IEnumerable<Type>) ,即它选择指定的类型作为注册目标。
AllTypes.Pick() is the same as AllTypes.Of<object>() ,因此它有效地选择了所有类型。
AllTypes.Pick().FromAssembly(Assembly.GetExecutingAssembly())将选择正在执行的程序集中的所有类型(然后您可以过滤,当然)

像往常一样,看看 fluent API wiki和/或 test case想要查询更多的信息。

关于api - CaSTLe Windsor Fluent Registration - Pick() 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/875670/

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