Basically I have the f开发者_JAVA百科ollowing: [Import] private IEventAggregator EventAggregator { get; set; }
I have created one plugin based application, by using MEF. So i have created one interface library which will be implemented by plugins.
I am a Silverlight developer and have used MEF in MMVM pattern in Silverlight. How can we use MEF in Asp.Net MVC application? How do I begin? There is no CompositionIniliazer.SatisfyImports. How do I
Is there a way to hook into the internals of CompositionContainer? For example, let\'s say any time an import is called on a export ending with the word \"View\" I might want to inject an export endi
I am sure this cant be hard - can it? the only func开发者_开发知识库tion seems to be GetExports but that seems to take 2 generic parameters plus a ExportDefintion that itself takes 5 values including
I want to make my custom control extensible (ie master/detail, search, etc). Each instance of the custom control would request its functionality via a property.
Is there a way to safely use Directory开发者_如何学运维Catalog to handle if the directory doesn\'t exist?
Right now, my XAP file has become big and i need a solution to partition it into some smaller applications. MEF or PRISM might fix my problem
I have ventured into the world of MEF for the first time and I am trying to figure out if it\'ll do what I am trying to accomplish.I am writing a windows service that is needed to call a few DLLs that
I\'m developing an application which i want to be expandable using plugins. Here at SO i found many suggestions on using MEF which is a simple solution to load the plugins DLLs from a directory.