我一直在试验MEF,我注意到偶尔会出现重复出口。我创建了这个简化的例子:
我创建了以下接口,以及元数据的属性:
public interface IItemInterface
{
string Name { get; }
}
public interface IItemMetadata
{
string TypeOf { get; }
}
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = false)]
public class ItemTypeAttribute : ExportAttribute, IItemMetadata
{
public ItemTypeAttribute(string typeOf)
{
TypeOf = typeOf;
}
public string TypeOf { get; set; }
}
然后我创建了以下导出:
public class ExportGen : IItemInterface
{
public ExportGen(string name)
{
Name = name;
}
public string Name
{
get;
set;
}
}
[Export(typeof(IItemInterface))]
[ItemType("1")]
public class Export1 : ExportGen
{
public Export1()
: base("Export 1")
{ }
}
public class ExportGenerator
{
[Export(typeof(IItemInterface))]
[ExportMetadata("TypeOf", "2")]
public IItemInterface Export2
{
get
{
return new ExportGen("Export 2");
}
}
[Export(typeof(IItemInterface))]
[ItemType("3")]
public IItemInterface Export3
{
get
{
return new ExportGen("Export 3");
}
}
}
执行此代码:
AggregateCatalog catalog = new AggregateCatalog();
CompositionContainer container = new CompositionContainer(catalog);
catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly().CodeBase));
var exports = container.GetExports<IItemInterface, IItemMetadata>();
foreach (var export in exports)
{
Console.WriteLine(String.Format("Type: {0} Name: {1}", export.Metadata.TypeOf, export.Value.Name));
}
输出:
Type: 1 Name: Export 1 Type: 2 Name: Export 2 Type: 3 Name: Export 3 Type: 3 Name: Export 3
当我调用GetExports()时,我得到Export3的副本,导出1和2不重复。 (请注意,当我使用ItemTypeAttribute时,我得到副本。)
如果删除类型1和2,并调用“GetExport”,则会抛出异常,因为有多个导出。
谷歌搜索在一年前发布了single blog帖子,但没有解决方案或后续行动
我在这里做错了什么,或者可能遗漏了一些傻事?
(所有这些都使用VS2010和.NET 4.0。)
答案 0 :(得分:1)
将ItemTypeAttribute
的构造函数更改为:
public ItemTypeAttribute(string typeOf)
: base(typeof(IItemInterface))
{
TypeOf = typeOf;
}
并删除
[Export(typeof(IItemInterface))]
因为您的自定义属性来自ExportAttribute
。这解释了您的双重出口。
指南可在CodePlex中MEF's Documentation的“使用自定义导出属性”部分找到。