2

CompositionContractMistachException在 .NET 4.0 上的 MEF 中使用自定义属性类时,我得到了一个。

Unable to create an instance of the Metadata view '(snip).ModuleExportAttribute, (snip), Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' because a constructor could not be selected. Ensure that the type implements a constructor which takes an argument of type IDictionary<string, object>.

这是我的ModuleExportAttribute课,没什么特别的:

[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class ModuleExportAttribute : ExportAttribute
{
    public ModuleExportAttribute(string name) : base(typeof(IModule))
    {
        this.Name = name;
    }

    public string Name { get; private set; }
}

用法是这样的:

[ModuleExport("MyModule")]
public class MyModule : IModule
{ 
   ...
}

添加要求的构造函数后,异常消失。

但是,我找不到任何说明此要求的参考资料。相反,我看到许多使用自定义属性类而没有此类构造函数的示例和博客文章。我在这里错过了什么吗?

4

1 回答 1

8

你是如何尝试导入这个的?我怀疑错误是由您导入类似的东西引起的,Lazy<IModule, MetadataExportAttribute>在这种情况下是的,为了使用具体类型作为元数据类型,它必须是一个接口,在这种情况下我们生成一个代理类型,或者它必须是一个接受IDictionary<string,object>以便可以将元数据传递给它。

尝试类似:

public interface IModuleMetadata
{
  string Name { get; }
}

然后将您的导入更改为:

[Import]
Lazy<IModule, IModuleMetadata> Module;

我还想让我的 ExportAttribute 实现 IModuleMetadata 接口,以确保它们保持一致,但这不是绝对必要的。

于 2012-08-23T02:43:38.857 回答