I have a webview in my windows 8 app. Is there a way to access the cookies from the webview? I used cookiecontainer to get response cookies but i would like to get access to cookie jar of the webview. If not possible, can I access local folders?
I found that cookies are stored for each app locally in folder:
Metro App Cookies %Root%\Users\%User%\AppData\Local\Packages\ %MetroAppName%\AC\INetCookies Contains cookie files specific to each Metro App. Data is contained in a text file.
Is there a way to access the contents from the app programatically?
I'll try the following in a bit:
using Windows.Storage;
StorageFolder localFolder = ApplicationData.Current.LocalFolder;
Update: I tried looking for the above folder INetCookies but it doesn't seem to exist.