Exemplo n.º 1
0
 public void AddPluginDir(string PluginDir)
 {
     CefRuntime.AddWebPluginDirectory(PluginDir);
     CefRuntime.RefreshWebPlugins();
 }
Exemplo n.º 2
0
 public void RemovePlugin(string path)
 {
     CefRuntime.RemoveWebPluginPath(path);
     CefRuntime.RefreshWebPlugins();
 }
Exemplo n.º 3
0
 public void AddPluginPath(string PluginPath)
 {
     CefRuntime.AddWebPluginPath(PluginPath);
     CefRuntime.RefreshWebPlugins();
 }