Example #1
0
 private DecoratorPredicateContext[] CreateDecoratorPredicateContexts()
 {
     return((
                from instanceProducer in this.instanceProducers.Value
                select DecoratorPredicateContext.CreateFromProducer(this.container, typeof(TService),
                                                                    instanceProducer))
            .ToArray());
 }
 internal DecoratorContext(DecoratorPredicateContext context)
 {
     this.context = context;
 }