Click here to Skip to main content
15,867,330 members
Articles / Web Development / ASP.NET

.NET 4.0 MEF FAQ (Socket, Plug and extension)

Rate me:
Please Sign up or sign in to vote.
4.92/5 (73 votes)
8 Sep 2010CPOL7 min read 139K   1.9K   158   24
.NET 4.0 MEF FAQ (Socket, Plug and extension)

Video Update....

This video talks about .NET 4.0 feature called as MEF Managed extensibility framework.

Image 1

Table of Contents

Introduction and Goal

This FAQ deep dives into .NET 4.0 MEF fundamentals (Import and Export) and also explains when to use MEF over DI / IOC. This article also explains step by step on how to use MEF in various technologies like Silverlight, WPF and ASP.NET.

Please feel free to download my free .NET Ebook which has 400 questions and answers in WCF, WPF, WWF, Silverlight and lot more from here.

What is MEF (Manage Extensibility Framework)?

MEF is a framework by which you can make your application extensible. For example, you have an accounting application and you would like to provide a hook (socket) where external vendors can connect (plug) and add invoicing capabilities to the accounting application.

For instance, you have application which you would want different vendors to connect with their features and extend your application.

So the vendors just put the components in the application, the application discovers them and does the connection and extension.

Image 2

How Can We Implement MEF in .NET 4.0?

Implementing MEF is a three step process:

• Import (Create the socket): Use the “Import” attribute to define a hook or socket in your application.
• Export (Attach the Plug): Use the “Export” attribute to create the plug which can attach to the plug or hook.
• Compose (Extend it): Use the composition container and compose it.

Image 3

Can We See A Simple Example of MEF with the Above 3 Steps?

We will create a simple class which will have a hook to import string message. In other words, any class which has functionality of string message implementation can attach themselves to the hook and extend that class.

Step 1: Create the Socket (Import)

The first step is to create a place holder / hook / socket where other components can plug in.

Import the below namespaces needed by MEF.

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

To define a hook, we have created an empty property called “ImportMessage” and we have attributed the same with “Import” attribute.

C#
class Program
{
[Import()]
public string ImportMessage
{
set;
get;
}
}

The above “import” attribute says that anyone who has string functionality implementation type can connect to me and attach the functionality.

Step 2: Create and Attach the Plug (Export)

In order to create the plug or extension, we need to use the “Export” attribute as shown below. This attribute in the current scenario does nothing but displays a simple string.

C#
class clsMySimpleMessage
{
[Export()]
string ExportMessage
{
set
{
}
get
{
return "Message inserted via MEF";
}
}
}

Step 3: Connect and Extend it (Compose it)

Ok, so we have created the socket, the plug and it’s time to connect both. Below goes the code for the same:

C#
private void Compose()
{
// Get a reference to the current assemblies in the project.
AssemblyCatalog catalog = new AssemblyCatalog(Assembly.GetExecutingAssembly());

// Once you have got the reference of catalog add it to the composition container.
CompositionContainer compositionContainer = new CompositionContainer(catalog);

// Finally call composeparts to connect the Import with Export.
compositionContainer.ComposeParts(this);

// use the property
Console.WriteLine(ImportMessage);
Console.ReadLine();
}

In other words export, import and compose. The below figure summarizes the same:

Image 4

Export” is like things you give off and “import” is like things which you take in.

Should Data Types of Import and Export Match?

The types of import and export should match or else while composing you will get an error as shown below. Can incompatible socket and plug connect?

Image 5

Image 6

Can We Connect Import and Export via Some Defined Contract Rather than .NET Data Types?

In the real world, your hooks would be some real world contract types like customer, supplier, etc. rather than simple .NET data types like string, int, Boolean, etc. In order to create a real word kind of hook in MEF, we need to first create a contract using interfaces as shown below:

C#
interface ImyInterface
{
string getString();
}

We need to ensure that the hooks defined in both import and export attribute are of the same interface type as shown below. The binding logic using composition container does not change; it’s the same as described in the previous section.

C#
[Export(typeof(ImyInterface))]
class clsMyImplementation : ImyInterface
{
public string getString()
{
return "This is my string";
}
}
C#
class Program
{
[Import()]
public ImyInterface myInterface
{
set;
get;
}
}

This Looks Very Much Similar to DI and IOC, Why the Re-invention?

In case you are new to DI/IOC, read from here.

Both of them overlap each other to a very great extent, but the GOALS are different. DI and IOC is meant for decoupling, while MEF is for extensibility. The below requirement will throw more light on how to decide which solution to go for:

Requirement Solution
The application should be a tiered application with each tier decoupled from each other for better reusability and maintainability. DI IOC
The application should provide a facility of exporting data into different formats. External vendors should be able to plug in their own export mechanism into the application. MEF

The below table summarizes the same in a detailed manner:

  DI / IOC MEF
Decoupling Yes  
Extensibility   Yes
Integrate Known things Yes  
Integrate Unknown thing   Yes
Automatic discovery   Yes
Registration Yes  
Discovery   Yes
Compile time Yes  
Run time   Yes

If you have still questions, post it to Glenn Block over here.

Can They Work Hand In Hand?

Let's say you have an application and following is your requirement:

 

Requirement Solution
The application should be 3 tier architecture with UI, BO and DAL layer decoupled from each other. DI IOC
The data access layer needs to be open and extensible. The application will provide the ability to vendors to plug their own data connection mechanism so that application can connect to their proprietary databases. MEF

The way to approach the first requirement is by using your favorite IOC container and the second requirement is where MEF fits. The below diagram shows how they fit into the whole game.

The end GOAL is more important when making a choice between them.

Image 7

Here is a nice article by Mr. Nicholas Blumhardt which shows how MEF and IOC fit in.

We Would Like to See a Sample in Silverlight?

The main important steps do not change.

Step 1: Create the Socket (Import)

Define the Silverlight items you want to import. In the below code snippet, we have defined a collection of user control type.

C#
public partial class MainPage : UserControl
{
[ImportMany]
public ObservableCollection<UserControl> ImportedItems
{ get; set; }
}

Step 2: Create and Attach the Plug (Export)

Use “Export” to define the plug. For the current scenario, we have defined two Silverlight user controls with export attribute exposing “UserControl” as the type.

C#
[Export(typeof(UserControl))]
public partial class SilverlightControl1 : UserControl
{
public SilverlightControl1()
{
InitializeComponent();
}
}


[Export(typeof(UserControl))]
public partial class SilverlightControl2 : UserControl
{
public SilverlightControl2()
{
InitializeComponent();
}
}

Step 3: Connect and Extend it (Compose it)

Use the “SatisfyImport” to compose the exports and import.

C#
CompositionInitializer.SatisfyImports(this);

If you run the same, you should see the composed user controls in the main Silverlight UI container as shown below:

Image 8

The whole Silverlight picture looks something as shown below.

Image 9

Can We Also See a Simple Sample in WPF?

Phrrr..phusss….tired will update soon.

How About Some Sample in ASP.NET?

Phrrr..phusss….tired will update soon.

Source Code

You can get the source code from the link at the top of this article.

References

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
GeneralMy vote of 5 Pin
fmsalmeida5-Apr-11 7:36
professionalfmsalmeida5-Apr-11 7:36 
very good article

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.