deleteurlcacheentry (wininet)
Last changed: -208.169.36.229

.
Summary
Removes the file that is associated with the source name from the cache, if the file exists

C# Signature:

     [DllImport("wininet.dll",
        SetLastError = true,
        CharSet = CharSet.Auto,
        EntryPoint = "DeleteUrlCacheEntryA",
        CallingConvention = CallingConvention.StdCall)]
     public extern bool DeleteUrlCacheEntry(IntPtr lpszUrlName);

VB Signature:

    <DllImport("wininet.dll", _
      SetLastError:=True, _
      CharSet:=CharSet.Auto, _
      EntryPoint:="DeleteUrlCacheEntryA", _
      CallingConvention:=CallingConvention.StdCall)> _
    Shared Function DeleteUrlCacheEntry( _
    ByVal lpszUrlName As IntPtr) As Boolean
    End Function

User-Defined Types:

None.

Alternative Managed API:

None

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

http://support.microsoft.com/kb/q311289/

Documentation