Is CefSharp multithreaded?

I am using CEFSharp in a C # application, and I need to load multiple URLs at a time in at least 10 WebViews. However, it does not work multithreaded. Is there a way to run it in multi-threaded mode, otherwise I need to rebuild the source code using certain compilation options?

thanks

+4
source share
1 answer

It works, although it is not good enough. Based on CefSharp. Examples, changes: 1) the application (or process) calls only once ExamplePresenter.Init () or CEF.Initialize (settings); 2) only after the application (or process) exits, execute "CEF.Shutdown (); System.Environment.Exit (0);"

+2
source

All Articles