Pause or deactivate an MEF component, or execute default implementation.
Michael Six
26
Reputation points
Hi im writing a costum intellisense item provider ->
[Export(typeof(IAsyncCompletionItemManagerProvider))]
[Name("Default completion item manager")]
[ContentType("CSharp")]
[Order(Before = PredefinedCompletionNames.DefaultCompletionItemManager)]
Im wondering, is it possible to pause / deactivate such mef components and use the editors default behavior instead?
In this case, if there is a default completionitemmanager registered, could i call it inside my implementation of it?
Im searching for a way to pause my own implementation.
Thanks
Sign in to answer