Lines Matching refs:WebCookieManager
54 webview.WebCookieManager.configCookieSync("https://www.example.com", "a=b");
9115 ## WebCookieManager section
9117 …**WebCookieManager** instance to manage behavior of cookies in **Web** components. All **Web** com…
9169 let value = webview.WebCookieManager.getCookie('https://www.example.com');
9236 let value = webview.WebCookieManager.fetchCookieSync('https://www.example.com');
9289 webview.WebCookieManager.fetchCookie('https://www.example.com', (error, cookie) => {
9354 webview.WebCookieManager.fetchCookie('https://www.example.com')
9418 webview.WebCookieManager.fetchCookie('https://www.example.com', false)
9481 webview.WebCookieManager.setCookie('https://www.example.com', 'a=b');
9544 webview.WebCookieManager.configCookieSync('https://www.example.com', 'a=b');
9600 … webview.WebCookieManager.configCookieSync('https://www.example.com', 'a=b', false, false);
9654 webview.WebCookieManager.configCookie('https://www.example.com', "a=b", (error) => {
9717 webview.WebCookieManager.configCookie('https://www.example.com', 'a=b')
9784 webview.WebCookieManager.configCookie('https://www.example.com', 'a=b', false, false)
9840 webview.WebCookieManager.saveCookieAsync((error) => {
9894 webview.WebCookieManager.saveCookieAsync()
9915 Sets whether the **WebCookieManager** instance has the permission to send and receive cookies.
9923 | accept | boolean | Yes | Whether the **WebCookieManager** instance has the permission to send an…
9950 webview.WebCookieManager.putAcceptCookieEnabled(false);
9965 Checks whether the **WebCookieManager** instance has the permission to send and receive cookies.
9973 | boolean | Whether the **WebCookieManager** instance has the permission to send and receive cookie…
9990 let result = webview.WebCookieManager.isCookieAllowed();
10003 Sets whether the **WebCookieManager** instance has the permission to send and receive third-party c…
10011 | accept | boolean | Yes | Whether the **WebCookieManager** instance has the permission to send an…
10038 webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false);
10053 Checks whether the **WebCookieManager** instance has the permission to send and receive third-party…
10061 | boolean | Whether the **WebCookieManager** instance has the permission to send and receive third-…
10078 let result = webview.WebCookieManager.isThirdPartyCookieAllowed();
10122 let result = webview.WebCookieManager.existCookie();
10158 webview.WebCookieManager.deleteEntireCookie();
10195 webview.WebCookieManager.clearAllCookiesSync();
10242 webview.WebCookieManager.clearAllCookies((error) => {
10296 webview.WebCookieManager.clearAllCookies()
10340 webview.WebCookieManager.deleteSessionCookie();
10371 webview.WebCookieManager.clearSessionCookieSync();
10418 webview.WebCookieManager.clearSessionCookie((error) => {
10472 webview.WebCookieManager.clearSessionCookie()