IdentitySection.Impersonate Property
.NET Framework (current version)
Gets or sets a value indicating whether client impersonation is used on each request.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("impersonate", DefaultValue = false)] public bool Impersonate { get; set; }
Property Value
Type: System.Booleantrue if client impersonation is used; otherwise, false. The default value is false.
If the Impersonate property is set to true, each request is served by a Web application impersonating its client. That is, either the user currently logged on or the user specified by the UserName and Password properties. When the Impersonate property is set to false, the application does not impersonate any client user.
The following code example shows how to access the Impersonate property. Refer to the code example of the IdentitySection class to learn how to access the section.
.NET Framework
Available since 2.0
Available since 2.0
Show:
