IdentitySection.Impersonate Property

 

Gets or sets a value indicating whether client impersonation is used on each request.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

[ConfigurationPropertyAttribute("impersonate", DefaultValue = false)]
public bool Impersonate { get; set; }

Property Value

Type: System.Boolean

true 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.

System_CAPS_noteNote

For security reasons, the identity section supports storage of the encrypted UserName and Password.

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.

// Get the Impersonate property value.
bool currentImpersonate = identitySection.Impersonate;

// Set the Impersonate property to true.
identitySection.Impersonate = true;

.NET Framework
Available since 2.0
Return to top
Show: