Is there a way to get the list of visited links in the CefSharp framework? It stores them but how can we access them ?
Asked
Active
Viewed 415 times
0
-
There is no API for that. – amaitland Jan 26 '17 at 19:55
-
I ended up adding entries in a txt file on the `TitleChanged` event. Awesome framework btw! – World Boss Jan 26 '17 at 20:06
-
Think I misunderstood your question, search for GetNavigationEntries – amaitland Jan 27 '17 at 02:49
-
Can you tell me an example of its implementation? – World Boss Jan 27 '17 at 12:09
-
There isn't one currently. Follows the same pattern as the other visitor methods. Just read the interface XML doc, it's pretty simple. – amaitland Jan 27 '17 at 12:20
-
I want to use other visitor methods too. But don't know how to. New to C#. – World Boss Jan 27 '17 at 13:19
-
Look at the source for some examples. – amaitland Jan 27 '17 at 13:22
-
`ICookieManager dCookieManager = Cef.GetGlobalCookieManager(); List
cookies = await dCookieManager.VisitAllCookiesAsync(); foreach (Cookie c in cookies) { if (c.HttpOnly) { Console.WriteLine(c.Domain); } }` How I read cookies the other day. Something like this? – World Boss Jan 27 '17 at 13:31