active questions tagged mef - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:36:06Zhttp://stackoverflow.com/feeds/tag/mefhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923184/mef-exception-sourceprovider-must-be-set1MEF exception " 'SourceProvider' must be set."wcoenen2009-12-17T17:07:07Z2009-12-17T21:53:12Z
<p>I am playing around with the new <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.composition%28VS.100%29.aspx" rel="nofollow">System.ComponentModel.Composition</a> namespace in .NET 4.0 beta 2, also known as the <a href="http://code.msdn.microsoft.com/mef" rel="nofollow">Managed Extensibility Framework</a>.</p>
<p>I use the following C# example where a <code>Monkey</code> imports a <code>Banana</code>:</p>
<pre><code>public interface IBanana
{
}
[Export(typeof(IBanana))]
public class Banana : IBanana
{
}
public class Monkey
{
[Import(typeof(IBanana))]
public IBanana Banana { get; set; }
}
</code></pre>
<p>However, when I try to compose the monkey as follows then I get an <code>InvalidOperationException</code> with the message "<strong>This object has not been initialized - the property 'SourceProvider' must be set.</strong>":</p>
<pre><code>var exportProvider = new CatalogExportProvider(new TypeCatalog(typeof(Banana)));
var container = new CompositionContainer(exportProvider);
var monkey = new Monkey();
container.ComposeParts(monkey);
</code></pre>
<p>What am I missing here? I am aware that I can pass the catalog directly without wrapping it in a CatelogExportProvider, but shouldn't the above also work?</p>
http://stackoverflow.com/questions/1910139/mef-and-wcf-issues-with-appdomain1MEF and WCF - Issues with AppDomainTravyguy92009-12-15T20:23:19Z2009-12-16T21:34:41Z
<p>I am currently running the latest preview (#8) and I am working with WCF services. I use MEF to read in the WCF Service Libraries. I have noticed that whenever I do any operation on one of the libraries from the application that read in the libraries, those WCF libraries have an AppDomain of 1, but whenever a WCF Service gets a notification, it has an AppDomain of 2? Is there a way to ensure that the WCF Service that gets notified is the same (or in the same AppDomain) as the one that was read in via MEF?</p>
<p>I basically need to read in configuration data on my WCF Service and ensure that the data is always stored in memory so when any notification comes in, that I am use the data in memory to help analyze what was sent in.</p>
http://stackoverflow.com/questions/1908669/mef-wcf-service-host1MEF + WCF Service Host?Travyguy92009-12-15T16:33:28Z2009-12-15T17:00:31Z
<p>I am just getting into MEF and I have come across a problem that I cannot resolve. I have a windows service that is reading in my DLLs (via MEF) and each DLL is a WCF Service Host. When I run my windows service and read in the DLLs everything runs fine, except that whenever one of the WCF DLLs get any "activity" then they reinstantiate and then process the data coming in. I need them to just instantiate once at the beginning. Is this possible?</p>
http://stackoverflow.com/questions/1893231/sandboxing-plugins-with-managed-extensibility-framework1Sandboxing plugins with Managed Extensibility FrameworkMattias Konradsson2009-12-12T12:12:29Z2009-12-12T13:28:16Z
<p>I'm working on an application where third party developers will be able to write plugins. I've been looking a little at Managed Extensibility Framework and it seems the right way to go.</p>
<p>One thing though, I want to prevent plugins from accessing the rest of the application freely (calling singletons etc) but would want to restrict to to communicate via some interface, ideally each plugin would have to "request" permission for different things like accessing other plugins and user data, is there a good way to do accomplish this?</p>
<p>Only thing I can think of otherwise is to have a security string passed to each method and obfuscate the hell out of the code but it seems like an ugly solution :P</p>
http://stackoverflow.com/questions/1876064/mef-what-if-i-have-multiple-exports-but-need-only-one-import2MEF: What if I have multiple exports but need only one import?Venemo2009-12-09T19:00:11Z2009-12-09T19:58:49Z
<p>Hello Everyone,</p>
<p>I'm trying to wrap my mind around MEF.
There is one thing I don't understand.</p>
<p>Assume that I have an interface, named ISomething, which is a contract, and I have more than one assemblies in a folder that contains my application, and I have no idea how many ISomething implementations are in them, or which one contains one.</p>
<p>If I create a host application in which I use MEF, and would like to get an ISomething, but only one, how does MEF decide which implementation it will give me?</p>
<p>Or, similarly to a common IoC container, how do I tell it which implementation should it use?</p>
<p>Thanks in advance for your answers.</p>
http://stackoverflow.com/questions/1875569/mef-where-should-i-put-the-compositioncontainer1MEF: Where should I put the CompositionContainer?Venemo2009-12-09T17:40:33Z2009-12-09T19:24:55Z
<p>Hello Everyone,</p>
<p>I have been using the Windsor IoC Container for my web-based application, to resolve the data access layer implementation the application should use.</p>
<p>The web application's UI will consist of pages, and each page consists of small units called portlets. (Their concept is somewhat similar to widgets.) These so-called portlets are basically web controls and can be configured in runtime for every page invidually.</p>
<p>The application will ship with some of these built-in, but I would like to enable extending it easily.</p>
<p>I figured out that this mechanism is exactly what MEF is built for. So I decided to implement the system in such a way that it discovers portlets using MEF. Then, I realized that it can also do what I currently use Windsor for, so I decided to ditch Windsor in favor of MEF.</p>
<p>Obviously, I will have to use the DirectoryCatalog, which scans for the .dlls in the app's bin folder and returns everything I need.</p>
<p>I read some tutorials, examples, and all questions regarding MEF in StackOverflow, as well. I figured that the easiest way to use MEF is through the PartInitializer which Glenn Block mentioned in his tutorials, but I realized that it is not in MEF. Actually, it is in the code I downloaded from CodePlex, but in a separate assembly, and only in source, not in binary form. (Does this mean that it isn't a part of MEF? Or what's the point in putting it to a separate project?)
Then, I realized that it is for Silverlight, so it doesn't really help me.
(Or should I just compile that against .NET 3.5, or include it in my project, and I'm good to go?)</p>
<p>So now I have a problem which is the following: where should I put the CompositionContainer in my application?</p>
<p>There is another thing I would like to consider: should I use only one CompositionContainer in the lifetime of the app, or I'm better off creating a container for every time when I need it?</p>
<p>Thanks in advance for your answers!</p>
http://stackoverflow.com/questions/795908/where-should-i-put-the-interfaces-for-mef2Where should I put the interfaces for MEF?stimms2009-04-28T01:33:10Z2009-12-09T08:35:08Z
<p>When organizing a project where should I put the provider interfaces which are used in MEF? Currently I just have them in the same project as everything else but it seems like it might desirable for me to extract them into a separate dll such that it was a very small dll and would easily be linked to by others attempting to write extensions. What is good practise for this?</p>
http://stackoverflow.com/questions/1845892/import-property-always-null-mef-import-issue1Import property always null (MEF import issue) ITGoran2009-12-04T09:39:52Z2009-12-04T16:11:58Z
<p>Hi,</p>
<p>I try for some time to get things done using MEF but now, I run into a problem i need help.</p>
<p>Description:
I have 2 DLL and one EXE file.
ClassLibrary1 (LoggerImpl.cs, SomeClass.cs)
ClassLibrary2 (ILogger.cs)
WindowsApplicationForms1 (WindowsApplicaitonForms1.cs, Program.cs)</p>
<p>I need any help or direction why this doesn't work ?</p>
<pre><code>// ClassLibrary1.dll
//SomeClass.cs
public class SomeClass
{
[Import("Logging", typeof(ILogger))]
public ILogger Log { get; set; } <-- ALWAYS NULL ???
public void Print()
{
Log.Print();
}
}
// ClassLibrary1.dll
// LoggerImpl.cs
namespace ClassLibrary1
{
[Export("Logging", typeof (ILogger))]
public class LoggerImpl : ILogger
{
public void Print()
{
Console.WriteLine("print called");
}
}
}
// ClassLibrary2.dll
// ILogger.cs
namespace LogNamespace
{
public interface ILogger
{
void Print();
}
}
// WindowsFormsApplication1.exe
// WindowsFormsApplication1.cs
namespace WindowsFormsApplication1
{
[Export("Form1",typeof(Form1))]
public partial class Form1 : Form
{
[Import("Logging", typeof(ILogger))]
public ILogger Log { set; get; }
private CompositionContainer _container;
public Form1()
{
InitializeComponent();
Compose();
Log.Print();
SomeClass c = new SomeClass();
c.Print();
}
private void Compose()
{
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new DirectoryCatalog("."));
catalog.Catalogs.Add(new AssemblyCatalog(System.Reflection.Assembly.GetExecutingAssembly()));
_container = new CompositionContainer(catalog);
try
{
_container.ComposeParts(this);
}
catch (CompositionException compositionException)
{
MessageBox.Show(compositionException.ToString());
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1595409/mef-vs-prism-what-is-the-difference-what-will-be-supported-in-the-future1MEF vs. PRISM. What is the difference? What will be supported in the future?unknown (google)2009-10-20T15:19:37Z2009-11-28T15:49:48Z
<p>I have read similiar posts but I it not clear to me. </p>
<p>What I want to create is a Silverlight apps with a few tabs/modules that will all be seperate DLLs. </p>
<p>I see PRISM has the Shell/Module concepts that seem directed towards doing UI and I find a nice demo (showing how to search digg/twitter).</p>
<p>But It sounds like MEF will be included in VS2010 so I would like to go with that option.</p>
<p>Can anyone somehow clearly explain the differences ? (I am not a advanced programmer)</p>
<p>(update 1)
So MEF and Unity are basically the same... and PRISM is on top of those concepts and is UI specific...</p>
<p>So the answers seems to be to use PRISM since what I am asking about is building breaking a silverlight app in seperate UI pieces..</p>
<p>Anyone know the future of PRISM development? Is it done or is it continuing? </p>
http://stackoverflow.com/questions/1778797/vs-2010-mouse-processor-extension-not-working1VS 2010 mouse processor extension - not workingdriis2009-11-22T14:06:59Z2009-11-24T15:47:47Z
<p>I am experimenting with a Visual Studio 2010 extension, where I need to work with the events exposed by IMouseProcessor.</p>
<p>As far as I can tell from the docs, I should create an IMouseProcessorProvider and export is using MEF, so that it can be automatically picked up by Visual Studio. </p>
<p>I created this class:</p>
<pre><code>[Export(typeof(IMouseProcessorProvider))]
[ContentType("code")]
internal sealed class MouseProcessorFactory : IMouseProcessorProvider
{
public IMouseProcessor GetAssociatedProcessor(IWpfTextView wpfTextView)
{
return new MouseProcessor();
}
}
</code></pre>
<p>When I run the experimental instance of Visual Studio, my extension is visible in the extension manager. But my custom mouse processor provider is never being called. Am I missing something / What am I doing wrong ? </p>
http://stackoverflow.com/questions/1773385/books-on-unity-or-mef2Books on Unity or MEFtyndall2009-11-20T21:34:45Z2009-11-20T21:48:27Z
<p>Anyone know if there are any books on Unity or MEF coming out in the next month or two?</p>
http://stackoverflow.com/questions/1770297/how-does-mef-determine-the-order-of-its-imports2How does MEF determine the order of its imports?Luke2009-11-20T13:01:36Z2009-11-20T20:41:51Z
<p>MEF allows you to import multiple parts via the use of the <code>ImportMany</code> attribute. How does it determine the order in which it retrieves the relevant exports and adds them to the enumerable you are populating? For example, how would I import multiple IRules that had to fire in a particular order? The only way I can think of is to have an OrderValue property in IRule and sort manually:</p>
<pre><code>public class Engine
{
[ImportMany]
public IEnumerable<IRule> Rules { get; set; }
public void Run()
{
// ...
// Initialise MEF
// ...
//
// Do I need to manually order Rules here?
//
foreach (IRule rule in Rules)
{
// Must execute in a specific order
rule.Execute();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1565360/windows-service-container0Windows Service ContainerRonnie2009-10-14T10:06:17Z2009-11-19T07:00:10Z
<p>For my projects I need quite often to create windows services. </p>
<p>I need them for scheduling operations, file system watching, asynchronous or long running side tasks (backup files, sending messages, check incoming mail to process, notifications etc). </p>
<p>I also use them to expose WCF services that are cross applications in the enterprise. </p>
<p>The self hosted scenario seems to me more appropriate as we are still on II6 that is quite limited (only http) for exposing WCF.</p>
<p>Most of) the services need also to expose some kind of administration interface (web or desktop) for reporting, starting and stopping the various services etc. </p>
<p>Seems strange to me that a "host container" that leverages most of these features (host, install new services, remote ui for admin, exposing wcf, scheduling etc) with some kind of mef plugins doesn't already exists.</p>
<p>What are the options if I do not want to start from scratch?</p>
http://stackoverflow.com/questions/1749131/instruct-mef-to-use-any-available-assemblies1Instruct MEF to use any available assembliesgrenade2009-11-17T14:07:04Z2009-11-18T11:07:01Z
<p>I am trying out the Managed Extensibility Framework for the first time in Visual Studio 2010 beta 2 using the System.ComponentModel.Composition from .net-4.0.</p>
<p>I have been unable to get the CompositionContainer to find my implementation assemblies using the two alternative routines below.</p>
<p>First attempt (this worked in an older codeplex release of MEF):</p>
<pre><code>var composition = new CompositionBatch();
composition.AddPart(this);
var container = new CompositionContainer(new DirectoryCatalog(AppDomain.CurrentDomain.BaseDirectory));
container.Compose(composition);
</code></pre>
<p>Second attempt (this worked in beta 1, I think):</p>
<pre><code>var aggregateCatalog = new AggregateCatalog(
new AssemblyCatalog(Assembly.GetExecutingAssembly()),
new DirectoryCatalog(AppDomain.CurrentDomain.BaseDirectory));
var compositionContainer = new CompositionContainer(aggregateCatalog);
compositionContainer.ComposeParts(this);
</code></pre>
<p>Is there a new way to do this in beta 2?</p>
<p>EDIT: It turned out to be nothing to do with the composition. I had a static property representing my imported implementation:</p>
<pre><code>[Import] public static ILog Log { get; set; }
</code></pre>
<p>which should have been:</p>
<pre><code>[Import] public ILog Log { get; set; }
</code></pre>
<p>I marked Daniel's answer as accepted because the sage advice of debugging in a more thorough fashion solved the problem.</p>
http://stackoverflow.com/questions/1329944/should-mef-be-used-in-a-production-application3Should MEF be used in a production applicationspooner2009-08-25T18:03:25Z2009-11-18T01:18:16Z
<p>Hi,</p>
<p>I currently need to provide a means of adding extensibility in my application. I'm currently looking at MEF and MAF.</p>
<p>MEF provides a simpler programming model, and also fits our usage scenarios better as we only want to load addins into a single AppDomain - this is due to the way the system has been architected. The same thing can be achieved with MAF with few lines of code too.</p>
<p>However, I was wondering if MEF should be used in production systems, given it's preview status?</p>
http://stackoverflow.com/questions/835182/choosing-between-mef-and-maf-system-addin9Choosing between MEF and MAF (System.AddIn)dthrasher2009-05-07T14:59:24Z2009-11-12T21:57:11Z
<p>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, <a href="http://stackoverflow.com/questions/124040/is-mef-a-replacement-for-system-addin">Is MEF a replacement for System.Addin?</a>, you can even use both at the same time. </p>
<p>When would you choose to use one vs. the other? Under what circumstances would you choose to use both together?</p>
http://stackoverflow.com/questions/1703436/basic-mef-workflow-usage2Basic MEF workflow/usagejoemoe2009-11-09T20:10:56Z2009-11-11T22:54:13Z
<p>I'm looking to a framework which will allow me to have a simple plugin system in my .NET application. It seems MEF is the framework which Microsoft is endorsing, and will become part of .NET 4 (it also seems to work with older .NET versions as a separate library, as well as Mono).</p>
<p>I'm previously used Mono.Addins as for a plugin system for a different project. The basic idea is I define a set of interfaces, these become "extension points", a plugin API if you will for the application. </p>
<p>Can MEF be used in a similar manner? How can I get started with MEF, especially from the perspective of someone with experience with Mono.Addins?</p>
http://stackoverflow.com/questions/1708018/how-to-prevent-module-duplicates-with-mef2How-To Prevent Module Duplicates with MEF ?Yoann. B2009-11-10T13:37:17Z2009-11-10T16:57:24Z
<p>Hi,</p>
<p>How can i prevent from MEF to load duplicates Modules in the case of the presence of 2 copies of the same Assembly (maybe by mistake)</p>
<ul>
<li><p>Assembly1.dll</p></li>
<li><p>Assembly2.dll (copy of Assembly1)</p>
<pre><code>[ImportMany]
public IList<IModule> Modules { get; private set; }
public void BuildUp()
{
Modules = new List<IModule>();
<pre><code>var catalog = new DirectoryCatalog(@".\Modules");
var container = new CompositionContainer(catalog);
container.ComposeParts(this);
</code></pre>
}
</code></pre></li>
</ul>
http://stackoverflow.com/questions/842571/using-mef-to-import-a-wpf-datatemplate1Using MEF to import a WPF DataTemplate?Scott Whitlock2009-05-09T03:01:13Z2009-11-07T03:34:48Z
<p>I was looking at MEF as an extensibility framework, and I'm pretty much sold, except for one point:</p>
<p>Let's say I want to import both a ViewModel and a View to display it. I think the "right" way to do that is for the MEF part to export a ViewModel class, and a DataTemplate that displays the ViewModel. As an example, say you were building a Visio-like application and you want to import a library of shapes. Each shape needs a View defined in Xaml and a ViewModel that would wrap some underlying Model object.</p>
<p>Is this possible? What would the Import contract look like for the DataTemplate and how do I make WPF aware of the imported DataTemplate?</p>
http://stackoverflow.com/questions/1399447/merging-resource-dictionaries-dynamically-at-runtime-for-plugins0Merging Resource Dictionaries dynamically at runtime (for plugins)Pieter Breed2009-09-09T12:39:55Z2009-11-07T03:32:07Z
<p>I am using the Managed Extensibility Framework for a WPF application. I've defined interfaces for so-called extension points which provide new features to the application.</p>
<p>Some of these features might be to display data using certain data templates, which is something which you will probably want to specify in a xaml resources file.</p>
<p>If I have one of these extension points (ie plugins in plain language) defined in an assembly which is not known at application compile time, but I still want to merge the plugin's resources with those of the application how would I go about it?</p>
<p>All the examples that shows how to do this using the pack URI notation state that is the solution when the assemblies that you reference are known at compile time. How do you achieve the same thing when you aren't familiar with the assembly at compile-time?</p>
http://stackoverflow.com/questions/1592779/mef-vs-mono-addin4MEF vs Mono.AddInPatrick2009-10-20T06:19:22Z2009-11-07T03:24:18Z
<p>Hi,</p>
<p>I'm developing a .NET 3.5 C# desktop application. It should be extensible via plug-ins.</p>
<p>Are there any articles etc. discussing the differences between MEF and Mono.AddIn to help me make an informed decision?</p>
<p>Or even better have you got experience with both of these frameworks and can comment on them?</p>
<p>Thanks,
Patrick</p>
http://stackoverflow.com/questions/1288376/mef-vs-any-ioc6MEF vs. any IoCPureCognition2009-08-17T14:47:24Z2009-11-07T03:21:42Z
<p>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 seems like MEF handles most IoC type patterns and that an IoC container like Unity would not be as necessary. Ideally, I would like to see a good use case where an IoC container would be used instead of, or in addition to, MEF. Thanks. </p>
http://stackoverflow.com/questions/1657616/when-is-mef-shipping2When is MEF shipping?Yaron Naveh2009-11-01T16:37:25Z2009-11-01T17:27:46Z
<p>I'm building a product that will ship after .Net 4.0 is released.</p>
<p>Is MEF an integral part of .Net 4.0, so I can count on them being released together, or is it some external component that might be released separately and thus it is dangerous to use?</p>
http://stackoverflow.com/questions/1635020/system-security-securityexception-when-creating-a-new-filestream1System.Security.SecurityException when creating a new FileStreamScott Whitlock2009-10-28T03:14:25Z2009-10-28T04:29:48Z
<p>I have a regular .NET application. In this case I have a part that's being imported by MEF. It imports fine, but at a certain point, I want to save a List of objects to a file. In this case it's just saving a list of high scores:</p>
<pre><code>class HighScores
{
static HighScores()
{
CheckTrust();
}
[ImportingConstructor]
public HighScores(
[Import("/Services/LoggingService", typeof(ILoggingService))]
ILoggingService l
)
{
logger = l;
}
private ILoggingService logger { get; set; }
public IEnumerable<HighScore> Scores
{
get
{
return m_Scores;
}
}
private List<HighScore> m_ScoresUnsorted = new List<HighScore>();
private readonly ObservableCollection<HighScore> m_Scores =
new ObservableCollection<HighScore>();
public void LogNewHighScore(string name, int score, int level)
{
m_ScoresUnsorted.Add(new HighScore(name, score, level));
CreateObservable();
if (IsFullTrust)
{
Stream stream = null;
try
{
// this line causes exception
stream = new FileStream("HighScores.dat",
System.IO.FileMode.Create, FileAccess.Write);
BinaryFormatter b = new BinaryFormatter();
b.Serialize(stream, m_ScoresUnsorted);
}
catch (Exception e)
{
logger.Error("Error writing high scores:", e);
}
finally
{
if (stream != null)
{
stream.Close();
}
}
}
}
private void CreateObservable()
{
m_ScoresUnsorted.Sort();
m_Scores.Clear();
for(int i = m_ScoresUnsorted.Count-1; i >= 0; i--)
{
m_Scores.Add(m_ScoresUnsorted[i]);
}
}
static private void CheckTrust()
{
try
{
FileIOPermission permission =
new FileIOPermission(PermissionState.Unrestricted);
s_FullTrust = SecurityManager.IsGranted(permission);
}
catch (Exception)
{
// ignore
}
}
static private bool s_FullTrust;
static public bool IsFullTrust
{
get
{
return s_FullTrust;
}
}
}
</code></pre>
<p>I'm getting a System.Security.SecurityException on the new FileStream line. The weird thing is that if I just replace this with a TextWriter, it works. I don't understand what I'm doing wrong.</p>
<p><strong>EDIT</strong>: More info... when I put this code in the constructor, it executes. If you follow the call stack back (when breaking in the sample above), it appears to be executing on the GUI thread. Specifically the WPF dispatcher is running a get operation on a property based on the fact that a PropertyChanged event fired. So maybe it has to do with a GUI refresher in WPF not being allowed to do file I/O? This kind of make sense... you wouldn't want to lock up the GUI for something like a file write...</p>
http://stackoverflow.com/questions/1610639/customised-business-rules-per-customer-asp-net-mvc2Customised business rules per customer...(asp.net mvc)Schotime2009-10-22T23:42:19Z2009-10-27T13:30:54Z
<p>In a web application i'm working on, items can pass through multiple states (eg. workflow) and after each workflow a rule can be run after each step which can stop the process or display additional messages. </p>
<p>How should these rules be defined?
I was thinking about a dll per rule (and hooking them up either with MEF or events) but one application could have 200-300 customers in it each with a few rules which becomes a lot of dlls.</p>
<p><strong>Update:</strong><br />
These rules could be like the following. Say you submit an invoice but you only want to authorize it from your approver if its over a certain amount, then a rule like this would be invoked to return true or false and then proceed accordingly.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/1628631/extensibility-via-mono-addins-or-mef1Extensibility via Mono.Addins or MEFjoemoe2009-10-27T03:33:29Z2009-10-27T04:21:15Z
<p>I have some experience with Mono.Addins, the extensibility framework heavily used in the Mono project. I am aware that Microsoft has recently developed their own extensibility framework by the name of MEF, as well as released it as open source. I am wondering if it is worthwhile to use this extensibility framework. If someone familiar with Mono.Addins could describe the differences it would be helpful.</p>
http://stackoverflow.com/questions/1616808/does-mef-support-customized-ctor2Does MEF Support Customized CTOR?David.Chu.ca2009-10-24T03:08:18Z2009-10-24T04:55:27Z
<p>It looks like that MEF framework creates objects which have default CTOR. How about customized CTOR, or Constructor with parameters? For example:</p>
<pre><code>[Export (typeof(IInterface1))]
public class MyClass : IInterface1
{
public MyClass(int id) {....}
....
}
</code></pre>
<p>If not, one way I can think is to pass object as parameters to CTOR. For example:</p>
<p>public Interface IParameterID {
public int Id { get; private set; }
...
}</p>
<p>Then the CTOR will be:</p>
<pre><code>public MyClass([Import(typeof(IParameter))] IParameterID id)
{ ... }
</code></pre>
<p>Not sure if it is possible to add attribute to CTOR's parameters? And the next question is that if MEF will automatically create an instance of IParameter and inject it to the CTOR's parameter?</p>
http://stackoverflow.com/questions/1043979/resources-and-examples-of-using-mef-for-di-ioc0Resources and Examples of using MEF for DI/IoCDetroitpro2009-06-25T13:36:06Z2009-10-08T19:05:20Z
<p>I've searched high and look for samples about using MEF for DI. I know its not DI but from what I hear (really hear in podcasts) it can be used as such...but I can't find any blog posts or samples.</p>
<p>I am using MEF in this project already (to support plugins) and thought it would be nice to leverage for DI also.</p>
<p>Maybe I am barking up the wrong tree?</p>
http://stackoverflow.com/questions/1464788/expose-version-of-mef-loaded-plugin1Expose version of MEF loaded "plugin"Dan F2009-09-23T08:49:28Z2009-09-23T09:02:49Z
<p>Hi all</p>
<p><em>apologies for the title, I got stuck for words</em></p>
<p>I'm dipping my toes in the MEF pond. So far, so good. I've got a host app and a couple of "plugin" assemblies that export things. The host app defines an attribute called <code>DescriptionAttribute</code> which inherits from <code>ExportAttribute</code> and has a simple <code>Name</code> property. My test form has an <code><ImportMany></code> <code>IEnumerable(Of Lazy(Of IDoStuff, IDescriptionAttribute))</code>. This gets nicely filled by MEF, I can spin through the collection, the <code>Name</code> property is filled in, life is golden. <em>I'll split things out into separate assemblies later on, at the moment it's just a proof of concept</em>.</p>
<p>Now, the question is: Is there any way I can expose the assembly version of the <code>IDoStuff</code> implementing, <code>DescriptionAttribute</code> wearing "plugin" classes through the <code>DescriptionAttribute</code> attribute that I have? All my attempts so far at passing it to the constructor of the attribute have failed, studio keeps telling me that a constant expression is required (understandably). I can expose it through the IDoStuff interface, but it'd be much nicer to have it as part of the <code>DescriptionAttribute</code> attribute instead, that "feels" better. I can also hardcode it, but it's another spot that I'd forget to update when releasing a new version of a "plugin" :-)</p>
http://stackoverflow.com/questions/1445292/how-does-one-import-multiple-plugin-parts-using-mef1How does one import multiple plugin/parts using MEF?dommer2009-09-18T15:30:59Z2009-09-18T15:35:53Z
<p>I'm new to MEF and am trying to use it to build a plug-in system, but am stuck at step one.</p>
<p>I'm following an <a href="http://blogs.msdn.com/andreww/archive/2009/03/31/mef.aspx" rel="nofollow">article by Andrew Whitechapel</a>. I've downloaded his sample code an it runs OK (if you remove one of the "exporting" assemblies - they are mutually exclusive in his sample - and reference the MEF assembly).</p>
<p>The sample illustrates importing a single part. I want to import multiple parts (all based on the same interface). So, I change the sample code as follows:</p>
<pre><code>[Import]
// OLD - public Interface.ICalculate Calculate { get; set; }
public IEnumerable<Interface.ICalculate> Calculators { get; set; }
// OLD - Console.WriteLine(
// OLD - String.Format("{0}", Calculate.Circumference(4)));
foreach (Interface.ICalculate calculator in Calculators)
{
Console.WriteLine(
String.Format("{0}", calculator.Circumference(4)));
}
</code></pre>
<p>I also imported System.Collections.Generic for the IEnumerable.</p>
<p>The key change is the first one. As I understand it, this will allow me to import parts from multiple assemblies. However, I get the following error:</p>
<pre><code>No valid exports were found that match the constraint
</code></pre>
<p>At this point I haven't even added multiple "plugin" assemblies. Still just have the one.</p>
<p>For completeness here's his export definition (which I haven't touched) in the "plugin" class library:</p>
<pre><code>[Export(typeof(Interface.ICalculate))]
public class Calculate : Interface.ICalculate
</code></pre>
<p>Any ideas? I'm scratching my head here. I've searched SO and the MEF forums, but could find anything to enlighten me.</p>
<p>I'm using VS 2008 SP1 (no 2010 beta installed) and the latest System.ComponentModel.Composition assembly (2009.26.8.0).</p>