托管扩展性框架中的导出更改是什么意思?

发布于 2024-10-21 08:22:58 字数 51 浏览 1 评论 0原文

我是 MEF 新手。在托管扩展性框架中,事件导出更改和导出更改是什么意思。如何可视化它?

I'm new to MEF. In Managed Exensibility Framework, what do you mean by events exportschanging and exportschanged. How one can visualize it?

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

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

发布评论

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

评论(1

风渺 2024-10-28 08:22:58

在托管可扩展性框架中,对象通过匹配导入和导出来连接在一起。我想你已经知道了。 (如果没有,您应该先通读 MEF 编程指南,然后开始玩与 MEF 有点。)

在典型场景中,导出由类型目录提供。其中一些目录可以在应用程序运行时更改,此时应用程序可能是 重组

以下是修改目录的两个示例:

发生这种情况时,CatalogExportProvider 基于目录将在处理更改之前触发 ExportsChanging 事件,并在处理更改之后触发 ExportsChanged 事件。

并非所有出口提供商都必须基于目录,但我希望您明白这一点。

In the Managed Extensibility Framework, objects are wired together by matching imports with exports. I assume you already know about that. (If not, you should read through the MEF programming guide first and play with MEF a bit.)

In a typical scenario, exports are provided by a catalog of types. Some of these catalogs can be changed while the application is running, at which point the application might be recomposed.

Here are two examples of modifying a catalog:

When this happens, the CatalogExportProvider based on the catalog will trigger the ExportsChanging event right before handling the change, and ExportsChanged right after.

Not all export providers have to be based on catalogs, but I hope you get the idea.

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