c# - cefsharp app remember password option -


i embedding webapp using cefsharp working fine. however, when logging app, cef doesn't offer remember username , password when opening app in normal chrome.

is there way in cefsharp cef ask remember usernames/password when uses go app, able sign in quicker ?

i have tried using command line args e.g.

cefsettings cs = new cefsettings(); cs.cefcommandlineargs.add("enable-automatic-password-saving", "enable-automatic-password-saving"); cs.cefcommandlineargs.add("enable-password-save-in-page-navigation", "enable-password-save-in-page-navigation"); cef.initialize(cs); 

but far, cef has not prompted me save username/password.

cefsharp doesn't support remember password prompt. don't believe cef either, though it's worth asking on http://magpcss.org/ceforum/ definitive answer (there's no reference in api current version).

i'll point of unless explicitly told cef use in memory cookie store, session cookies won't persisted. need specify cefsettings.cachepath persist cookies (and other cache able data).


Comments

Popular posts from this blog

How can we post XML strings along with text strings in iOS -

How to run C# code using mono without Xamarin in Android? -