6

MEF 抛出 ImportCardinalityMismatchException 的可能原因是什么?

4

1 回答 1

4

下面的代码演示了如何重现此错误。

要进行测试,请确保使用 .NET 4.5 进行编译,并添加 MEF 程序集:

  • System.ComponentModel.Composition
  • System.ComponentModel.Composition.Registration

问题是 MEF 想要构造一个 Person 对象,但它无法完成对“Age”(标记为“Import”)的属性注入。

要重现该错误,请注释掉下面标记的行。

using System;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.Reflection;

namespace ForStackOverflow
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var container = new CompositionContainer(
                new AssemblyCatalog(Assembly.GetExecutingAssembly()));

            // Comment out this next line to get an
            // ImportCardinalityMismatchException error
            container.ComposeExportedValue("Age", 30); 

            var person = container.GetExportedValue<Person>();

            Console.WriteLine("Persons age: " + person.Age);
            Console.WriteLine("[press any key to continue]");
            Console.ReadKey();
        }
    }

    [Export]
    public class Person
    {
        [ImportingConstructor]
        public Person()
        {
        }

        [Import("Age")]
        public int Age { get; set; }
    }
}
于 2013-09-19T09:14:22.423 回答