gpt4 book ai didi

c# - 如何在 Autofac 中获取所有注册的服务类型

转载 作者:可可西里 更新时间:2023-11-01 08:42:02 26 4
gpt4 key购买 nike

我有一个 Autofac 容器,我希望能够检索所有已注册的服务类型(不是实现类型,而是它们注册的类型)。

如何从 IComponentContext 中获取此信息?

最佳答案

你可以使用这个:

var services =
context.ComponentRegistry.Registrations.SelectMany(x => x.Services)
.OfType<IServiceWithType>()
.Select(x => x.ServiceType);

关于c# - 如何在 Autofac 中获取所有注册的服务类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15499451/

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