vote up 1 vote down star

I have a export defined as as follows in MEF preview 5

[ExportMetadata("Application", "CheckFolderApplication")]
[Export(typeof(ExtendedArtifactBase))]
public class CheckFolderArtifact2 : ExtendedArtifactBase
{ ...

Then I only want those imports with the "Application" "CheckFolderApplication" metadata. To currenly do that I read all the imports and then filter the result.

[Import(typeof(ExtendedApplicationBase))]
private ExportCollection<IApplication> _applications { get; set; }

public IApplication GetApplication(string applicationName)
{
    return _applications.Single(a => a.GetExportedObject().Name == applicationName).GetExportedObject();
 }

This feels really inefficient. What if I have thousands of plug-ins - do I have to read them all via MEF to just get one with the right metadata? If so how do you cache the result?

flag

1 Answer

vote up 2 vote down check

Yes, in this case you will have to do the filtering yourself.

To cache the result, you can just store it in another private variable. If you want to support recomposition (you'd have to set the AllowRecomposition property of the import attribute to true), then you can implement IPartImportsSatisfiedNotification on your class and the interface's OnImportsSatisfied method will be called whenever the imports have been set.

link|flag
Thanks Daniel, it's a ASP.NET MVC web app som I have to find out another way to cache it ... – Riri May 20 at 4:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.