Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 3.74 KB

File metadata and controls

50 lines (37 loc) · 3.74 KB
title IHttpContext::GetRequest Method
description Describes the IHttpContext::GetRequest method and details its syntax, parameters, return value, remarks, code example, and requirements.
ms.date 10/07/2016
ms.assetid 566b6315-00a6-0d9a-17ae-e531139a4912

IHttpContext::GetRequest Method

Returns the HTTP request container for the current context.

Syntax

virtual IHttpRequest* GetRequest(  
   VOID  
) = 0;  

Parameters

This method takes no parameters.

Return Value

A pointer to an IHttpRequest interface.

Remarks

The GetRequest method returns a pointer to an IHttpRequest interface that can be used to call any of the IHttpRequest methods.

Note

The HTTP context object owns the lifetime of this object. Therefore, you do not free this pointer when writing HTTP modules.

Example

The following code example illustrates how to use the IHttpContext::GetRequest and GetResponse methods to return pointers to IHttpRequest and IHttpResponse interfaces. This example also demonstrates how to use the IHttpRequest::GetHttpMethod method to retrieve the HTTP method for the current request, and it displays the method to a Web client by using the IHttpResponse::WriteEntityChunks method.

[!code-cppIHttpContextGetRequest#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

IHttpContext Interface
IHttpContext::GetResponse Method