Questions tagged [maf]

Microsoft's Managed Add-in Framework (MAF), sometimes called System.Addin, contains types to identify, register, activate, and control add-ins, and to allow add-ins to communicate with a host application. It is a part of the Microsoft .NET Framework since .NET 3.5.

Managed Add-in Framework

The Managed Add-in Framework, often abbreviated as MAF was introduced in .NET 3.5 to provide a programming model which developers may use to develop and utilize add-ins in their own applications.

Through the use of an add-in (aka communication) pipeline, add-in hosts and add-ins are abstracted from each-other, providing the necessary isolation and independent versioning of the add-ins and the host.

All of the types required for an application or library to utilize MAF are located within the System.Addin namespace.

Further Reading

123 questions
0
votes
0 answers

System.Addin get HostView from token without activating

Is there anyway to obtain the HostView of a token without activating that token? In my program I activate the token when the wpf window loads and then, in a separate class, I need to access the HostView of a specific token. After some initial checks…
Mike Lorenzana
  • 506
  • 4
  • 20
-1
votes
1 answer

Assembly.LoadAssembly, MEF and MAF: how do they manage different assembly of frameworks and how not to lock loaded assemblies?

I'm developing an application with .NET and this application must be able to load different plug-in (dll). The application is a simple Form that show the selected plug-in and the plug-in are UserControl with inside all the necessary control for…
LucaG
  • 74
  • 9
-2
votes
1 answer

Android app button text disappears after months of working fine

I have a field service reporting android app that I created in Oracle MAF. it has been in use for almost a year now with no UI issues, Over the last few days, I have been getting reports from our end users that the button text is disappearing. so -…
Tom G
  • 1
  • 1
1 2 3
8
9