| title | IHttpFileInfo::GetLastModifiedTime Method |
|---|---|
| description | Learn how the GetLastModifiedTime method retrieves the last modified time structure of the corresponding file for an IHttpFileInfo interface. |
| ms.date | 10/07/2016 |
| ms.assetid | 8bfb6d62-8091-00fd-b72d-cfb4e6d47bf2 |
Retrieves the last modified time structure of the corresponding file for an IHttpFileInfo interface.
virtual VOID GetLastModifiedTime(
OUT FILETIME* pFileTime
) const = 0; pFileTime
[OUT] A pointer to a FILETIME structure.
VOID.
The GetLastModifiedTime method retrieves the time offset for the file that is currently referenced by an IHttpFileInfo interface as a FILETIME structure.
Note
The FILETIME structure is a 64-bit value that represents the number of 100-nanosecond intervals since January 1, 1601.
The GetLastModifiedTime method is similar to the IHttpFileInfo::GetLastModifiedString method, except that you can use the FILETIME structure for comparisons that use functions like CompareFileTime and for calculations that use functions like FileTimeToSystemTime.
Your module must export the RegisterModule function. You can export this function by creating a module definition (.def) file for your project, or you can compile the module by using the /EXPORT:RegisterModule switch. For more information, see Walkthrough: Creating a Request-Level HTTP Module By Using Native Code.
You can optionally compile the code by using the __stdcall (/Gz) calling convention instead of explicitly declaring the calling convention for each function.
| Type | Description |
|---|---|
| Client | - IIS 7.0 on [!INCLUDEwinvista] - IIS 7.5 on Windows 7 - IIS 8.0 on Windows 8 - IIS 10.0 on Windows 10 |
| Server | - IIS 7.0 on [!INCLUDEwinsrv2008] - IIS 7.5 on Windows Server 2008 R2 - IIS 8.0 on Windows Server 2012 - IIS 8.5 on Windows Server 2012 R2 - IIS 10.0 on Windows Server 2016 |
| Product | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 - [!INCLUDEiisexp75], [!INCLUDEiisexp80], [!INCLUDEiisexp100] |
| Header | Httpserv.h |
IHttpFileInfo Interface
IHttpFileInfo::GetLastModifiedString Method