INTERNET_CACHE_TIMESTAMPS structure (wininet.h)
Contains the LastModified and Expire times for a resource stored in the Internet cache.
C++
typedef struct _INTERNET_CACHE_TIMESTAMPS {
FILETIME ftExpires;
FILETIME ftLastModified;
} INTERNET_CACHE_TIMESTAMPS, *LPINTERNET_CACHE_TIMESTAMPS;
ftExpires
FILETIME structure that contains the Expires time.
ftLastModified
FILETIME structure that contains the LastModified time.
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).
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | wininet.h |