Пример #1
0
        public T Resolve <T>(Type type, IPluginComponentSpecification <IComponentWithProperties> specification)
        {
            var overloads = new NamedParameterOverloads
            {
                { "specification", specification }
            };

            return((T)this.container.Resolve(type, overloads));
        }
Пример #2
0
 internal void Add(IPluginComponentSpecification<IComponentWithProperties> componentSpecification)
 {
     this.componentSpecifications.Add(componentSpecification);
 }
Пример #3
0
 internal ComponentRendererConfigurer(IPluginComponentSpecification<IComponentWithProperties> specification)
 {
     this.specification = specification;
 }
Пример #4
0
 internal ComponentConfigurer(IPluginComponentSpecification <IComponentWithProperties> specification)
 {
     this.specification = specification;
 }
Пример #5
0
 internal CacheConfigurer(IPluginComponentSpecification <IComponentWithProperties> componentConfiguration)
 {
     this.componentConfiguration = componentConfiguration;
 }
Пример #6
0
 internal void Add(IPluginComponentSpecification <IComponentWithProperties> componentSpecification)
 {
     this.componentSpecifications.Add(componentSpecification);
 }
Пример #7
0
 internal CacheConfigurer(IPluginComponentSpecification<IComponentWithProperties> componentConfiguration)
 {
     this.componentConfiguration = componentConfiguration;
 }
Пример #8
0
 public MarkdownRenderer(IPluginComponentSpecification <IComponentWithProperties> specification)
 {
     this.specification = specification;
 }