I am trying to get all cookies from webview in iOS 10 but it does not return complete list of cookies where in case of iOS 11 it works perfect.
For iOS 11 :
var cookieStore = webView.Configuration.WebsiteDataStore.HttpCookieStore;
It works perfect and return all the server cookies.
For iOS 10 :
NSHttpCookie[] cookieStoreData = NSHttpCookieStorage.SharedStorage.Cookies;
It does not return all the cookies.
I am using WKWebView. How can I get all the cookies from WKWebView. ? Thanks for your help in advance.