Created
May 2, 2014 14:43
-
-
Save asizikov/1fd791c8ffd4696ebcf6 to your computer and use it in GitHub Desktop.
HttpRequestCache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assuming that clearing the WinInet cache solves the problem, you can delete files programmatically by P/Invoking to the DeleteUrlCacheEntry WinInet API: | |
public static class NativeMethods | |
{ | |
[DllImport("WinInet.dll", PreserveSig = true, SetLastError = true)] | |
public static extern void DeleteUrlCacheEntry(string url); | |
} | |
///////////// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment