zoukankan      html  css  js  c++  java
  • Using MEF to Set Up Dependency Injection

    The Managed Extensibility Framework (MEF) is a built-in set of elements that allows you to “export” and “import” objects across projects that allows you to not rely on hard dependencies.
    
    From Microsoft:
    
    The Managed Extensibility Framework or MEF is a library for creating lightweight, extensible applications. It allows application developers to discover and use extensions with no configuration required. It also lets extension developers easily encapsulate code and avoid fragile hard dependencies. MEF not only allows extensions to be reused within applications, but across applications as well.
    
    To use MEF you need to include the following reference in your project:
    
    System.ComponentModel.Composition
    
    We need to define a container. This is where all the exported values will be stored. One simple way to do that is to create a class such as this one:
    
    public static class Mef    
    {    
        private static CompositionContainer container;    
         
        public static CompositionContainer Container    
        {    
            get    
            {    
                if (container == null)    
                {    
                    var catalog =    
                        new DirectoryCatalog(".", "MyProjectNamespace.*");    
         
                    container = new CompositionContainer(catalog);    
                }    
         
                return container;    
            }    
        }    
    }   
    This will grab all the exported values from all the assemblies in the same directory starting with “MyProjectNamespace”.
    
    And then I can annotate the classes I want to export as in the following:
    [Export]    
    public class Logger    
    {    
    }    
         
    [Export]    
    public class GameService    
    {    
        [Import]    
        private Logger log;    
    }   
    Whenever I need a GameService I can request it from the container as in the following:
    GameService gameService = Mef.Container.GetExportedValue<GameService>();   
    Notice that on GameService class I have a field with an [Import] attribute. This means MEF will resolve the value for me while it is retrieving the exported value for GameService.
    
    I can also export a class identified by an interface:
    [Export(typeof(IGameService))]    
    public class GameService    
    {    
        [Import]    
        private Logger log;    
    }   
    And I could use it as:
    GameService gameService = Mef.Container.GetExportedValue<IGameService>();  
    MEF will get whatever it has in its container for IGameService.
    
    If you have more than one export for IGameService and you attempt to resolve it with GetExportedValue you will get an exception.
    
    You can have multiple exports, but the way you need to handle it is different.
    
    For example, I can have a screen with several tabs that are exported as in the following:
    public interface ITab { }    
         
    [Export(typeof(ITab))]    
    public class HomeTab : ITab { }    
         
    [Export(typeof(ITab))]    
    public class GamesTab : ITab { }    
         
    [Export(typeof(ITab))]    
    public class WishlistTab : ITab { }    
    And I can import them using the ImportMany attribute as in the following: 
    [Export]    
    public class Home    
    {    
        [ImportMany]    
        private List<ITab> tabs;    
    }    
    ImportMany 
    
    And there is also the ImportingConstructor attribute that allows me to import objects while I am creating the instance.
    [Export]    
    public class GameService    
    {    
        private Logger log;    
         
        [ImportingConstructor]    
        public GameService(Logger log)    
        {    
            this.log = log;    
        }    
    }    
         
    [Export]    
    public class Logger { }   
    ImportingConstructor 
    View Code
    Top
    收藏
    关注
    评论
  • 相关阅读:
    聊天系统Demo,增加文件传送功能(附源码)-- ESFramework 4.0 快速上手(14)
    文件传送,如此简单--ESFramework 4.0 快速上手(13)
    PAT B1012.数字分类
    PAT B1046.猜拳
    PAT B1016.部分A+B(15)
    记录:挑战搭建一个简易的成绩管理系统的数据库
    mysql学习记录(一)
    使用foreach一次性添加多个单选按钮
    通过metaclass实现精简的ORM框架
    高级BASH
  • 原文地址:https://www.cnblogs.com/hualiu0/p/5264297.html
Copyright © 2011-2022 走看看