Page 1 of 1

About RequestContext in cefGlue

PostPosted: Wed Jan 11, 2017 11:08 am
by hametan
There have multiple cefglue in winform,I hope that each cefglue has a separate cache.


In cefsharp:

var browser = new ChromiumWebBrowser(url)
browser.RequestContext = new RequestContext(new RequestContextSettings()
{
CachePath =System.IO.Directory.GetCurrentDirectory() + @"\Cache\Cache"+DateTime.Now.ToLongTimeString()
});


I want to know how to do in cefglue

Re: About RequestContext in cefGlue

PostPosted: Sun Jan 22, 2017 5:05 am
by fddima
CefGlue provides almost identical to CEF API with minor improvements. CefRequestContext is handle this.

CefGlue bundled only with sample browser controls, nothing comparable to CefSharp control.

CefGlue initial goals:
1. be pure P/Invoke so it is know that it work on all 3 platforms
2. provide API close to CEF (C++) API
3. provide minimal samples, without controls

So, you should read docs or choose another binding project.