@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: API call for finding first URL Cache Entry (Temporary Internet Files) !!!!C# Signature: [DllImport(@"wininet",SetLastError=true,CharSet=CharSet.Auto,EntryPoint="FindFirstUrlCacheEntryA",CallingConvention=CallingConvention.StdCall)] public static extern IntPtr FindFirstUrlCacheEntry([MarshalAs(UnmanagedType.LPTStr)] string lpszUrlSearchPattern,IntPtr lpFirstCacheEntryInfo,ref int lpdwFirstCacheEntryInfoBufferSize); !!!!VB.Net Signature: <DllImport("wininet.dll", _ SetLastError:=True, _ CharSet:=CharSet.Auto, _ EntryPoint:="FindFirstUrlCacheEntryA", _ CallingConvention:=CallingConvention.StdCall)> _ Shared Function FindFirstUrlCacheEntry( _ <MarshalAs(UnmanagedType.LPStr)> ByVal lpszUrlSearchPattern As String, _ ByVal lpFirstCacheEntryInfo As IntPtr, _ ByRef lpdwFirstCacheEntryInfoBufferSize As Int32) As IntPtr End Function !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: http://support.microsoft.com/kb/q311289/ !!!!Alternative Managed API: None Documentation: http://msdn.microsoft.com/library/en-us/wininet/wininet/findfirsturlcacheentry.asp
Edit wininet.FindFirst...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.