System.Web.HttpContext.User Property

Gets or sets security information for the current HTTP request.

Syntax

public System.Security.Principal.IPrincipal User { set; get; }

Value

a System.Security.Principal.IPrincipal

Remarks

The HttpContext.User property provides programmatic access to the properties and methods of the System.Security.Principal.IPrincipal interface.

Because ASP.NET pages contain a default reference to the System.Web namespace (which contains the System.Web.HttpContext class), you can reference the members of System.Web.HttpContext on an .aspx page without using the fully qualified class reference to System.Web.HttpContext. For example, you can use User.Identity.Name to get the name of the user on whose behalf the current process is running. However, if you want to use the members of System.Security.Principal.IPrincipal from an ASP.NET code-behind module, you must include a reference to the System.Web namespace in the module and a fully qualified reference to both the currently active request/response context and the class in System.Web that you want to use. For example, in a code-behind page you must specify the fully qualified name HttpContext.Current.User.Identity.Name.

Requirements

Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0