findnexturlcacheentry (wininet)
Last changed: -208.169.36.229

.
Summary
Retrieves the next entry in the Internet cache

C# Signature:

    [DllImport("wininet.dll", SetLastError=true, CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)]
    public static extern bool FindNextUrlCacheEntry(
        IntPtr hFind,
        IntPtr lpNextCacheEntryInfo,
        int lpdwNextCacheEntryInfoBufferSize);

VB Signature:

    <DllImport("wininet.dll", _
        SetLastError:=True, _
        CharSet:=CharSet.Auto, _
        EntryPoint:="FindNextUrlCacheEntryA", _
        CallingConvention:=CallingConvention.StdCall)> _
    Shared Function FindNextUrlCacheEntry( _
        ByVal hFind As IntPtr, _
        ByVal lpNextCacheEntryInfo As IntPtr, _
        ByRef lpdwNextCacheEntryInfoBufferSize As Integer) 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