0

I'm using Xilium.CefGlue browser for WPF. How can I clear browser history? I didn't found any managed API for that. I found only method definition in cef_browser_capi.h.

Charles
  • 50,943
  • 13
  • 104
  • 142
TcKs
  • 25,849
  • 11
  • 66
  • 104

1 Answers1

1

Currently only one way exist - delete cache path directory when it is no more used by application.

PS: For general CEF questions better ask questions at CEF forum http://www.magpcss.org/ceforum .

Dmitry Azaraev
  • 1,093
  • 6
  • 9
  • Will it delet whole cache or only the history? – TcKs Sep 26 '13 at 10:09
  • CEF for now not track visited url and history. So you can delete only cached content (may be also appcache, etc). If you need clear only one thing - check how them are stored - usually differents subsystems uses different files. – Dmitry Azaraev Sep 26 '13 at 17:32