Reputation:
Is it possible to disable Flash Player or any other plugins from being used by the .NET WebBrowser control?
Upvotes: 2
Views: 2956
Reputation: 1933
You could access the WebBrowser.Document.HtmlDocument property of the the control to get managed access to the DOM. From there you can pull out any object tags responsible for loading plugin content...
Upvotes: 1