Hi,
In order to delete everything, you must destroy all WebViews and then delete the cache folder.
To destroy all WebViews, you can call Engine.Stop. Do not call Runtime.Shutdown as you won't be able to create any WebView again until you restart your application. See here for more information about Engine object:
https://www.essentialobjects.com/doc/webbrowser/advanced/engine.aspxAfter you stop the engine, you can delete cache folder:
https://www.essentialobjects.com/doc/eo.webengine.engine.cleanupcachefolders_overloads.aspxMake sure you pass AllVersions to the policy argument.
If you only want to delete cookies, you can use the CookieManager interface:
https://www.essentialobjects.com/doc/eo.webengine.cookiemanager.aspxThis will delete cookie but not cache.
Hope this helps. Please feel free to let us know if you have any more question.
Thanks!