I am attempting to sandbox potentially malicious code by executing it within a MAF plugin launched in its own process:
I\'ve built up an application that works using the System.AddIn APIs.Add-ins are currently activated in an external AppDomain with Internet trust.
I use MAF and I have a problem with activating the addin. Let me explain my plan. First I create a secondary AppDomain then I try to activate the addin:
I work with the MAF in WPF and I have problems with the UI threads. I would like that each AddIn that I activate become a unique UI thread.
I want to develop a windows service 开发者_Go百科hosted wcf web service that would behave as a task execution management and reporting service. Each task would be represented as a .net assembly, the t
Here is my scenario: I am using the Microsoft AddIn Framework for my project in order to have a nice plugin architecture.I also have a custom API I made compiled into a dll.The host application and a
If I use Managed AddIn Framework (System.AddIn)and set it up to use separate AppDomains, can I use a centralized IoC container that is in the primary/default AppDomain? Can the IoC container resolve a
I am trying to use the overload of MAF\'s AddInToken.Activate() method that accepts an AppDomain, so that I can pass an application domain created by my client application.
I\'ve currently used MAF to create an add-in model where the add-ins are loaded in a restricted AppDomain (Internet permissio开发者_如何学运维n).This means that the add-in can\'t call our database whi
I am looking for a simple and secure way to access plugins from a .NET application. Although I imagine that this is a very common requirement, I am struggling to find anything that meets all my needs: