1 write to _Identity
System.Web (1)
Configuration\RemoteWebConfigurationHost.cs (1)
74_Identity = (tokenHandle == IntPtr.Zero) ? null : new WindowsIdentity(tokenHandle); //CreateWindowsIdentity(username, domain, password, tokenHandle);
8 references to _Identity
System.Web (8)
Configuration\RemoteWebConfigurationHost.cs (8)
86WindowsImpersonationContext wiContext = (_Identity != null) ? _Identity.Impersonate() : null; 212if (_Identity != null) { 213wiContext = _Identity.Impersonate(); 248RemoteWebConfigurationHostStream rcs = new RemoteWebConfigurationHostStream(false, _Server, streamName, null, _Username, _Domain, _Password, _Identity); 257RemoteWebConfigurationHostStream rcs = new RemoteWebConfigurationHostStream(true, _Server, streamName, templateStreamName, _Username, _Domain, _Password, _Identity); 353if (_Identity != null) 354wiContext = _Identity.Impersonate();