1 write to Impersonate
System.Web (1)
Configuration\IdentitySection.cs (1)
140Impersonate = source.Impersonate; // If it is different than expected make sure it is set or validation
15 references to Impersonate
System.Web (15)
Configuration\IdentitySection.cs (9)
124if (Impersonate) { 139if (Impersonate != source.Impersonate) { // this will not be copied by unmerge if it is the same as parent 140Impersonate = source.Impersonate; // If it is different than expected make sure it is set or validation 143if (Impersonate) // was impersonate set in the merge 172if (_username != null && Impersonate) { 177else if (_password != null && _username == null && _password.Length > 0 && Impersonate) { 183if (Impersonate && ImpersonateToken == IntPtr.Zero && _username != null) { 224if (_username != null && Impersonate) {
Hosting\HostingEnvironment.cs (2)
459if (c.Impersonate && c.ImpersonateToken != IntPtr.Zero) { 1750if (c.Impersonate) {
HttpContext.cs (3)
2019_impersonationEnabled = (c != null && c.Impersonate); 2139return (c != null && c.Impersonate && c.ImpersonateToken == IntPtr.Zero); 2155if (c.Impersonate) {
HttpRuntime.cs (1)
1146if (c.Impersonate && c.ImpersonateToken == IntPtr.Zero)