IHttpFileInfo::GetLastModifiedTime Method

 

Retrieves the last modified time structure of the corresponding file for an IHttpFileInfo interface.

Syntax

virtual VOID GetLastModifiedTime(  
   OUT FILETIME* pFileTime  
) const = 0;  

Parameters

pFileTime
[OUT] A pointer to a FILETIME structure.

Return Value

VOID.

Remarks

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.

Comments

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.

Requirements

Type Description
Client - IIS 7.0 on Windows Vista
- IIS 7.5 on Windows 7
- IIS 8.0 on Windows 8
- IIS 10.0 on Windows 10
Server - IIS 7.0 on Windows Server 2008
- 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 Technical Preview
Product - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
- IIS Express 7.5, IIS Express 8.0, IIS Express 10.0
Header Httpserv.h

See Also

IHttpFileInfo Interface
IHttpFileInfo::GetLastModifiedString Method