10
votes
10answers
1k views
Whither Managed Extensibility Framework for .NET?
Has anyone worked much with Microsoft's Managed Extensibility Framework (MEF)? Kinda sounds like it's trying to be all things to all people - It's an add-in manager! It's duck typing! I'm wondering if …
9
votes
5answers
1k views
Choosing between MEF and MAF (System.AddIn)
The Managed Extensibility Framework (MEF) and Managed AddIn Framework (MAF, aka System.AddIn) seem to accomplish very similar tasks. According to this Stack Overflow question, Is MEF a replacement for …
6
votes
3answers
294 views
MEF vs. any IoC
Looking at Microsoft's Managed Extensibility Framework (MEF) and various IoC containers (such as Unity), I am failing to see when to use one type of solution over the other. More specifically, it …
6
votes
1answer
710 views
Is MEF OSGi for .NET?
I'm just trying to get my head around the Managed Extensibility Framework (MEF) at the moment and digging into a bit. I have an Eclipse background so in my brain I currently have the equation:
MEF …
5
votes
4answers
537 views
Is MEF about UI? If not, why are all examples about GUI composition?
The MEF team keep saying it is about plug-in model. So, are we talking about UI plugins? How can we use this stuff in non-UI code?
I downloaded the code and the examples are all about GUI. Am I …
4
votes
3answers
180 views
MEF vs Mono.AddIn
Hi,
I'm developing a .NET 3.5 C# desktop application. It should be extensible via plug-ins.
Are there any articles etc. discussing the differences between MEF and Mono.AddIn to help me make an …
4
votes
1answer
165 views
MEF: Calling Refresh() on a DirectoryCatalog throws ChangeRejectedException if new DLLs found in directory (C#)
I'm experimenting with MEF and created a test program to call "plugins" that implement some given interface, which follows:
using System;
using System.Collections.Generic;
using System.Linq;
using …
4
votes
2answers
635 views
Is MEF a replacement for System.Addin?
Is the Managed Extensibility Framework a replacement for System.Addin? Or are they complementary?
4
votes
4answers
1k views
MEF vs IoC/DI
What problems does MEF (Microsoft Extensibility Framework) solves that cannot be solved by existing IoC/DI containers?
3
votes
3answers
151 views
Should MEF be used in a production application
Hi,
I currently need to provide a means of adding extensibility in my application. I'm currently looking at MEF and MAF.
MEF provides a simpler programming model, and also fits our usage scenarios …
3
votes
1answer
128 views
Does MEF (Managed Extensibility Framework) do “duck” typing?
I have 2 assemblies:
Assembly 1:
interface IWeapon {
int Might { get; }
}
[Export("sword")]
public class Sword : IWeapon {
public int Might {
get { return 10; }
}
}
…
3
votes
4answers
335 views
Using MEF for pluggable architecture in MVC
Ok I got a strange issue that I hope someone could help with
I have a MVC project based upon this demo
http://blogs.msdn.com/hammett/archive/2009/04/23/mef-and-asp-net-mvc-sample.aspx
However it …
3
votes
5answers
172 views
Creating multiple instances of Imported MEF parts
Hi,
Currently my WPF application imports a part like this
[Import(typeof(ILedPanel)]
public ILedPanel Panel { get; set; }
But this gives ma a single intance of the class that implements ILedPanel.
…
3
votes
3answers
695 views
Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB)
We are currently looking at either using CAB or MEF for our next application. I didn't see any examples on codeplex of how event brokering is handled for sibling control communication, maybe I missed …
3
votes
3answers
673 views
Implementing MEF with ASP.NET MVC?
I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, …
