I have an application which exports several objects of the same Class, and plugins which import only specific ones. for example
public class Part
{
string name;
public Part(string nm)
{
name = nm;
}
}
public class Car //Exports ALL Parts of the Car
{
[Export(typeof(Part))]
public Part steeringWheel = new Part("SteeringWheel");
[Export(typeof(Part))]
public Part engine = new Part("Engine");
[Export(typeof(Part))]
public Part brakes = new Part("Brakes");
}
public class SystemMonitorPlugin //Imports only SOME Parts from the Car
{
[Import(typeof(Part))]
public Part engine;
[Import(typeof(Part))]
public Part brakes;
}
Could someone explain how I can achieve this behavior?
You need a contract(interface) and a metadata contract (interface):
Then you export your parts:
Then you can import with ImportMany and Lazy: