Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法确定是否在 StructureMap 中配置了特定类型?
如果没有在 StructureMap 中专门配置,我想返回一个泛型类型。
在 v2.6 中,您想要:
IContainer.Model.HasImplementationsFor(serviceType)
从 StructureMap 版本 2.5.1 开始,有一个TryGetInstance<T>()andTryGetNamedInstance<T>()将返回TifT未知的默认值。
TryGetInstance<T>()
TryGetNamedInstance<T>()
T