Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 2.9 KB

File metadata and controls

45 lines (33 loc) · 2.9 KB
title IMapPathProvider::GetUrl Method
description Learn how the IMapPathProvider::GetUrl method retrieves the relative URL for the request, as well as details about its syntax and parameters.
ms.date 10/07/2016
ms.assetid 3e34715b-0a94-dd4a-8ec0-4974e470bb5d

IMapPathProvider::GetUrl Method

Retrieves the relative URL for the request.

Syntax

virtual PCWSTR GetUrl(  
) const = 0;  

Parameters

This method takes no parameters.

Return Value

A pointer to a Unicode string that contains the relative URL.

Remarks

The GetUrl method retrieves the relative path for the current request when an HTTP module is processing the CHttpModule::OnMapPath event.

Example

The following code example demonstrates how to use the GetUrl method to create an HTTP module that retrieves the relative URL for the current request and returns the URL to a Web client.

[!code-cppIMapPathProviderGetUrl#1]

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 [!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

See Also

IMapPathProvider Interface