Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 3.76 KB

File metadata and controls

50 lines (37 loc) · 3.76 KB
title IHttpContext::GetUser Method
description The IHttpContextGetUser method retrieves the user information container for the current context.
ms.date 10/07/2016
ms.assetid f98e6f16-fa74-fa56-d9cb-26529064e4fa

IHttpContext::GetUser Method

Retrieves the user information container for the current context.

Syntax

virtual IHttpUser* GetUser(  
   VOID  
) const = 0;  

Parameters

This method takes no parameters.

Return Value

A pointer to an IHttpUser interface.

Remarks

The GetUser method returns an IHttpUser interface, which contains several methods for retrieving security-related information for the current request. For example, you can use the IHttpUser::GetUserName and IHttpUser::GetPassword methods to retrieve the user credentials for an authenticated user.

Note

The HTTP context object owns the lifetime of the IHttpUser interface that is returned by the GetUser method. Therefore, you do not free this pointer when you write HTTP modules.

Example

The following code example demonstrates how to use the GetUser method to create an HTTP module that retrieves an IHttpUser interface. The example then uses the IHttpUser::GetUserName method to retrieve the current user name. If the Web site is using anonymous authentication, the user name will be blank, and the HTTP module will return a message that the Web site is using anonymous authentication. Otherwise, the HTTP module will return the current user name to a Web client.

[!code-cppIHttpContextGetUser#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 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
IHttpUser Interface