INTERNET_CACHE_TIMESTAMPS structure (wininet.h)

Contains the LastModified and Expire times for a resource stored in the Internet cache.

Syntax

typedef struct _INTERNET_CACHE_TIMESTAMPS {
  FILETIME ftExpires;
  FILETIME ftLastModified;
} INTERNET_CACHE_TIMESTAMPS, *LPINTERNET_CACHE_TIMESTAMPS;

Members

ftExpires

FILETIME structure that contains the Expires time.

ftLastModified

FILETIME structure that contains the LastModified time.

Remarks

This structure is returned in the buffer when calling InternetQueryOption with the INTERNET_OPTION_CACHE_TIMESTAMPS flag.

Note  WinINet does not support server implementations. In addition, it should not be used from a service. For server implementations or services use Microsoft Windows HTTP Services (WinHTTP).
 

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header wininet.h

See also

InternetQueryOption