Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function sets the specified members of the INTERNET_CACHE_ENTRY_INFOstructure.

Syntax

BOOL SetUrlCacheEntryInfo(
  LPCSTR 
lpszUrlName,
  LPINTERNET_CACHE_ENTRY_INFO 
lpCacheEntryInfo,
  DWORD 
dwFieldControl
);

Parameters

lpszUrlName

[in] Address of a string value that contains the URL of the cached resource.

lpCacheEntryInfo

[in] Address of an INTERNET_CACHE_ENTRY_INFOstructure containing the values to be assigned to the cache entry designated by lpszUrlName.

dwFieldControl

[in] Unsigned long integer value that contains a bitmask that indicates the members that are to be set. The following table shows the possible values. This parameter can be a combination of these values.

Value Description

CACHE_ENTRY_ACCTIME_FC

Sets the last access time.

CACHE_ENTRY_ATTRIBUTE_FC

Sets the cache entry type.

CACHE_ENTRY_EXEMPT_DELTA_FC

Sets the exempt delta.

CACHE_ENTRY_EXPTIME_FC

Sets the expire time.

CACHE_ENTRY_HEADERINFO_FC

Not currently implemented.

CACHE_ENTRY_HITRATE_FC

Sets the hit rate.

CACHE_ENTRY_MODTIME_FC

Sets the last modified time.

CACHE_ENTRY_SYNCTIME_FC

Sets the last sync time.

Return Value

Returns TRUE if successful, or FALSE otherwise.

Requirements

Header wininet.h
Library wininet.lib
Windows Embedded CE Windows CE 2.12 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also