Example #1
0
 public SingletoneComponentCreator(
     Type pluginType,
     ComponentInfoAttribute pluginInfoAttribute)
     : base(pluginType, pluginInfoAttribute)
 {
     _instance = new Lazy <IExtComponent>(CreateNewInstance, true);
 }
Example #2
0
 public PerCallComponentCreator(Type pluginType, ComponentInfoAttribute pluginInfoAttribute)
     : base(pluginType, pluginInfoAttribute)
 {
 }
Example #3
0
 protected ComponentCreatorBase(Type pluginType, ComponentInfoAttribute pluginInfoAttribute)
 {
     ComponentType          = pluginType;
     ComponentInfoAttribute = pluginInfoAttribute;
 }