protected override object GetExportedValueCore()
 {
     if (_factoryExportPartDefinition == null)
     {
         _factoryExportPartDefinition = new FactoryExportPartDefinition(this);
     }
     return(_factoryExportPartDefinition);
 }
 protected override object GetExportedValueCore()
 {
     if (this._factoryExportPartDefinition == null)
     {
         this._factoryExportPartDefinition = new FactoryExportPartDefinition(this);
     }
     return this._factoryExportPartDefinition;
 }
Example #3
0
 public FactoryExportPart(FactoryExportPartDefinition definition)
 {
     _definition = definition;
     _export     = definition.CreateProductExport();
 }
 public FactoryExportPart(FactoryExportPartDefinition definition)
 {
     this._definition = definition;
     this._export = definition.CreateProductExport();
 }