mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-05-13 21:16:38 +02:00
Initial version.
This commit is contained in:
parent
e4fb48f6ab
commit
10dbeb5a90
737 changed files with 61885 additions and 0 deletions
16
TINK/TINK.Android/Model/Device/WebView.cs
Normal file
16
TINK/TINK.Android/Model/Device/WebView.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using Android.Webkit;
|
||||
using TINK.Model.Device;
|
||||
|
||||
[assembly: Xamarin.Forms.Dependency(typeof(TINK.Droid.Model.Device.WebView))]
|
||||
namespace TINK.Droid.Model.Device
|
||||
{
|
||||
public class WebView : IWebView
|
||||
{
|
||||
/// <summary> Clears the cookie cache for all web views. </summary>
|
||||
public void ClearCookies()
|
||||
{
|
||||
var cookieManager = CookieManager.Instance;
|
||||
cookieManager.RemoveAllCookie();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue