Saturday, 28 September 2019

MEF 1 - ImportMany generic interfaces

This is just an example how to import many implementations of a generic interface with MEF1.
Also you can see how to resolve a class from MEF1 container.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
public interface IInterface<t>
{
    T Execute();
}
 
[Export(typeof(IInterface<double[]>))]
public class ImplDouble : IInterface<double[]>
{
    public double[] Execute()
    {
        throw new System.NotImplementedException();
    }
}
 
[Export(typeof(IInterface<double[]>))]
public class ImplDouble2 : IInterface<double[]>
{
    public double[] Execute()
    {
        throw new System.NotImplementedException();
    }
}
 
[Export(typeof(IInterface<string>))]
public class ImplString : IInterface<string>
{
    public string Execute()
    {
        throw new System.NotImplementedException();
    }
}
 
[Export(typeof(IInterface<string>))]
public class ImplString2 : IInterface<string>
{
    public string Execute()
    {
        throw new System.NotImplementedException();
    }
}
 
[Export]
public class Consumer
{
    public readonly IEnumerable<IInterface<double[]>> Doubles;
    public readonly IEnumerable<IInterface<string>> Strings;
 
 
    [ImportingConstructor]
    public Consumer(
        [ImportMany]
        IEnumerable<IInterface<double[]>> doubles,
        [ImportMany]
        IEnumerable<IInterface<string>> strings)
    {
        Doubles = doubles;
        Strings = strings;
    }
}
 
[TestClass]
public class Demo
{
    [TestMethod]
    public void Test()
    {
        var cc = new CompositionContainer(new AssemblyCatalog(typeof(Demo).Assembly));
        var c = cc.GetExport<consumer>().Value;
    }
}