Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

INTERNET_CACHE_ENTRY_INFO (wininet)
 
.
Summary
Contains information about an entry in the Internet cache
Summary
TODO - a short description

C# Signature:

[StructLayout(LayoutKind.Explicit)]

public struct ExemptDeltaOrReserverd

{

   [FieldOffset(0)]
   public UInt32 dwReserved;
   [FieldOffset(0)]
   public UInt32 dwExemptDelta;

}

[StructLayout(LayoutKind.Sequential)]

private struct INTERNET_CACHE_ENTRY_INFO

{

  public UInt32 dwStructSize;
  public IntPtr lpszSourceUrlName;
  public IntPtr lpszLocalFileName;
  public UInt32 CacheEntryType;
  public UInt32 dwUseCount;
  public UInt32 dwHitRate;
  public UInt32 dwSizeLow;
  public UInt32 dwSizeHigh;
  public FILETIME LastModifiedTime;
  public FILETIME ExpireTime;
  public FILETIME LastAccessTime;
  public FILETIME LastSyncTime;
  public IntPtr lpHeaderInfo;
  public UInt32 dwHeaderInfoSize;
  public IntPtr lpszFileExtension;
  public ExemptDeltaOrReserverd dwExemptDeltaOrReserved;

}

VB Signature:

<StructLayout(LayoutKind.Explicit, Size:=80)> _
    Public Structure INTERNET_CACHE_ENTRY_INFOA
    <FieldOffset(0)> Public dwStructSize As UInt32
    <FieldOffset(4)> Public lpszSourceUrlName As IntPtr
    <FieldOffset(8)> Public lpszLocalFileName As IntPtr
    <FieldOffset(12)> Public CacheEntryType As UInt32
    <FieldOffset(16)> Public dwUseCount As UInt32
    <FieldOffset(20)> Public dwHitRate As UInt32
    <FieldOffset(24)> Public dwSizeLow As UInt32
    <FieldOffset(28)> Public dwSizeHigh As UInt32
    <FieldOffset(32)> Public LastModifiedTime As FILETIME
    <FieldOffset(40)> Public ExpireTime As FILETIME
    <FieldOffset(48)> Public LastAccessTime As FILETIME
    <FieldOffset(56)> Public LastSyncTime As FILETIME
    <FieldOffset(64)> Public lpHeaderInfo As IntPtr
    <FieldOffset(68)> Public dwHeaderInfoSize As UInt32
    <FieldOffset(72)> Public lpszFileExtension As IntPtr
    <FieldOffset(76)> Public dwReserved As UInt32
    <FieldOffset(76)> Public dwExemptDelta As UInt32
    End Structure
Declare Function INTERNET_CACHE_ENTRY_INFO Lib "wininet.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

None

Do you know one? Please contribute it!

Notes:

Above signature is not working for x64 systems. See INTERNET_CACHE_ENTRY_INFO for a version that works on both x86 and x64.

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation

http://msdn.microsoft.com/library/en-us/wininet/wininet/internet_cache_entry_info.asp

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions