使用继承自 Lazy<> 的类导入依赖项

发布于 2024-10-14 15:25:18 字数 481 浏览 5 评论 0 原文

您可以使用继承自 Lazy 的类而不是 Lazy 本身进行导入吗?我正在使用包含元数据的 ExportAttribute 派生体进行导出。

[FeatureExport(/* Feature Metadata Parameters */)]
public class Feature : IFeature
{
    // Feature Properties
}

public class FeatureReference : Lazy<IFeature, IFeatureMetadata>
{

}

public class Consumer
{
    [ImportMany]
    public IEnumerable<FeatureReference> FeatureReferences { get; set; }
}

这可能吗?会起作用吗?我可以自己尝试一下,但我正在开发中,所以我实际上没有编写任何代码。

Can you import using a class that inherits from Lazy rather than Lazy itself? I am exporting using a derivitive of ExportAttribute that contains metadata.

[FeatureExport(/* Feature Metadata Parameters */)]
public class Feature : IFeature
{
    // Feature Properties
}

public class FeatureReference : Lazy<IFeature, IFeatureMetadata>
{

}

public class Consumer
{
    [ImportMany]
    public IEnumerable<FeatureReference> FeatureReferences { get; set; }
}

Is this possible? Would it work? I could try it myself, but I'm in development so I don't actually have any code written.

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

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

发布评论

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

评论(1

萌吟 2024-10-21 15:25:18

不,恐怕行不通。您需要实现自己的编程模型扩展(自定义部件/目录或可能通过ReflectionModelServices)才能完成此工作。

MEF 必须创建 FeatureReference 对象才能设置它,并且考虑到 FeatureReference 可能具有任何可以想象到的构造函数,您可以猜测为什么不支持它。

No, it won't work I'm afraid. You would need to implement your own programming model extension (either a custom part/catalog or possibly via ReflectionModelServices) to make this work.

MEF would have to create the FeatureReference object in order to set it, and considering that FeatureReference might have any constructor imaginable, you can guess why this isn't supported.

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