跟踪 MEF 容器创建的实例

发布于 2024-09-14 05:56:29 字数 752 浏览 7 评论 0原文

我正在使用 MEF 创建同一导出的多个实例。

我想跟踪我创建的实例,并且正在查询容器或使用重新组合的集合,但我从来没有得到我的实例......

这是代码:

interface IFoo{};
[Export(typeof(IFoo)),PartCreationPolicy(CreationPolicy.NonShared)]
class Foo{};

  class FooTracker{
     CompositionContainer _container; 
     int HowManyValues()
     {
       // this always returns 1 and invokes a constructor
       return _container.GetExportedValue<IFoo>().Count();
     }

     int HowManyExports(){
       // idem
       return _container.GetExports<IFoo>().Count();
     }

     // idem
     [ImportMany(AllowRecomposition=true,AllowRecomposition=true)]
     protected IEnumerable<IFoo> Foos { get; set; }
  }

我想要得到的是已经存在的实例,如果没有则不创建新实例。

谢谢, 弗洛里安

I'm using MEF to create several instances of the same export.

I'd like to keep track of the instances I have created, and am either querying the container or using a recomposited collection, but I never get my instances...

Here's the code:

interface IFoo{};
[Export(typeof(IFoo)),PartCreationPolicy(CreationPolicy.NonShared)]
class Foo{};

  class FooTracker{
     CompositionContainer _container; 
     int HowManyValues()
     {
       // this always returns 1 and invokes a constructor
       return _container.GetExportedValue<IFoo>().Count();
     }

     int HowManyExports(){
       // idem
       return _container.GetExports<IFoo>().Count();
     }

     // idem
     [ImportMany(AllowRecomposition=true,AllowRecomposition=true)]
     protected IEnumerable<IFoo> Foos { get; set; }
  }

What I would like is to get is the already existing instances, not create a new one if there aren't any.

Thanks,
Florian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2024-09-21 05:56:29

MEF 不提供此功能。您可以通过让 IFoo 的每个实现导入 IFooTracker 并调用 IFooTracker 中的方法来注册 IFoo 来完成此操作。

MEF doesn't provide this functionality. You could do it by having each implementation of IFoo import an IFooTracker and call a method in IFooTracker to register the IFoo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文