如何配置 Unity 2.0 策略注入以在配置文件中使用自定义属性匹配规则?
我想要的是在统一配置文件中翻译以下代码片段。
myContainer.Configure<Interception>()
.AddPolicy("MyPolicy")
.AddMatchingRule<CustomAttributeMatchingRule>
(new InjectionConstructor(typeof(MyAttributeType), true))
.AddCallHandler<MyCallHandler>
("MyValidator",
new ContainerControlledLifetimeManager());