gpt4 book ai didi

c# - MEF GetExports 不返回任何内容,AllowMultiple = True

转载 作者:太空狗 更新时间:2023-10-29 21:13:47 26 4
gpt4 key购买 nike

我不太了解 MEF,所以希望这是对我认为它的工作方式的简单修复。

我正在尝试使用 MEF 获取有关某个类及其使用方式的一些信息。我正在使用元数据选项来尝试实现这一目标。我的接口(interface)和属性如下所示:

public interface IMyInterface
{
}

public interface IMyInterfaceInfo
{
Type SomeProperty1 { get; }
double SomeProperty2 { get; }
string SomeProperty3 { get; }
}

[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class ExportMyInterfaceAttribute : ExportAttribute, IMyInterfaceInfo
{
public ExportMyInterfaceAttribute(Type someProperty1, double someProperty2, string someProperty3)
: base(typeof(IMyInterface))
{
SomeProperty1 = someProperty1;
SomeProperty2 = someProperty2;
SomeProperty3 = someProperty3;
}

public Type SomeProperty1 { get; set; }
public double SomeProperty2 { get; set; }
public string SomeProperty3 { get; set; }
}

用属性修饰的类如下所示:

[ExportMyInterface(typeof(string), 0.1, "whoo data!")]
[ExportMyInterface(typeof(int), 0.4, "asdfasdf!!")]
public class DecoratedClass : IMyInterface
{
}

尝试使用导入的方法如下所示:

private void SomeFunction()
{
// CompositionContainer is an instance of CompositionContainer
var myExports = CompositionContainer.GetExports<IMyInterface, IMyInterfaceInfo>();
}

在我的例子中,myExports 总是空的。在我的 CompositionContainer 中,我的目录中有一个部件,它有两个 ExportDefinitions,它们都具有以下 ContractName:“MyNamespace.IMyInterface”。 Metadata 也根据我的导出正确加载。

如果我删除 AllowMultiple setter 并且只包含一个导出的属性,则 myExports 变量现在具有单个导出及其加载的元数据。

我做错了什么?

编辑:如果我使用弱类型元数据,我的导出突然得到满足:

var myExports = CompositionContainer.GetExports<IMyInterface, IDictionary<string, object>>();

有什么想法吗?

最佳答案

已知 MEF 在处理 AllowMultiple = true 时存在一些问题。如需完整说明,您可以查看 here。 , 无论如何它源于这样一个事实,即当 AllowMultiple 为真时,元数据保存在字典中,其中值是数组,并且这样的事情不能映射到你的 IMyInterfaceInfo 上。

这是我使用的解决方法。首先,您的属性应该派生自 Attribute,而不是派生自 ExportAttribute:

[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class ExportMyInterfaceAttribute : Attribute, IMyInterfaceInfo
{
public ExportMyInterfaceAttribute(Type someProperty1, double someProperty2, string someProperty3)

{
SomeProperty1 = someProperty1;
SomeProperty2 = someProperty2;
SomeProperty3 = someProperty3;
}

public Type SomeProperty1 { get; set; }
public double SomeProperty2 { get; set; }
public string SomeProperty3 { get; set; }
}

这意味着导出的类应该有 3 个属性,一个标准导出和您的自定义属性:

[Export(typeof(IMyInterface))]
[ExportMyInterface(typeof(string), 0.1, "whoo data!")]
[ExportMyInterface(typeof(int), 0.4, "asdfasdf!!")]
public class DecoratedClass : IMyInterface

然后您必须为将要导入的元数据定义一个 View 。这必须有一个以 IDictionary 作为参数的构造函数。像这样:

public class MyInterfaceInfoView
{
public IMyInterfaceInfo[] Infos { get; set; }

public MyInterfaceInfoView(IDictionary<string, object> aDict)
{
Type[] p1 = aDict["SomeProperty1"] as Type[];
double[] p2 = aDict["SomeProperty2"] as double[];
string[] p3 = aDict["SomeProperty3"] as string[];

Infos = new ExportMyInterfaceAttribute[p1.Length];
for (int i = 0; i < Infos.Length; i++)
Infos[i] = new ExportMyInterfaceAttribute(p1[i], p2[i], p3[i]);
}
}

现在应该可以成功调用了

var myExports = CompositionContainer.GetExports<IMyInterface, MyInterfaceInfoView>();

关于c# - MEF GetExports<T, TMetaDataView> 不返回任何内容,AllowMultiple = True,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10988447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com