Esempio n. 1
0
        public T Resolve <T>(Type type, IPluginComponentSpecification <IComponentWithProperties> specification)
        {
            var overloads = new NamedParameterOverloads
            {
                { "specification", specification }
            };

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