Help! I use GeckoFx-Windows-10.0-0.6 for browser and xulrunner-10.0.en-US.win32. ( Visual Studio 2010 c# ) everything works well. But i need to clear all history as at Firefox : Tools >> Options >> Privacy
I find how clear cookie over Gecko.CookieManager.RemoveAll();
How clear cache , temp files and history ?!
And when i initialize Gecko.Xpcom
i can not clean the folder "Gecko.Xpcom.ProfileDirectory"
(where cache and cookie) for obvious reasons.
Gecko.Xpcom.Shutdown()
does not help
I found a way to clean the cookies via javascript :
var cookieManager = Components.classes["@mozilla.org/cookiemanager;1"].getService(Components.interfaces.nsICookieManager);
cookieManager.removeAll();
How right call this JS in C#?