我不太了解 MEF,所以希望这是我认为它如何工作的简单修复。
我正在尝试使用 MEF 来获取有关某个类以及应如何使用它的一些信息。我正在使用元数据选项来尝试实现这一目标。我的接口和属性如下所示:
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 中,我的目录中有一个 Part 有两个ExportDefinitions
,两者都具有以下内容ContractName
:“MyNamespace.IMyInterface”。根据Metadata
我的导出,它也正确加载。
如果我删除AllowMultiple
setter 并仅包含一个导出属性,则该myExports
变量现在具有单个导出及其加载的元数据。
我究竟做错了什么?
编辑:如果我使用弱类型元数据,我的导出突然得到满足:
var myExports = CompositionContainer.GetExports<IMyInterface, IDictionary<string, object>>();
任何想法为什么?