17 references to IdentitySection
System.Web (17)
Configuration\IdentitySection.cs (4)
120IdentitySection parent = parentElement as IdentitySection; 138IdentitySection source = sourceElement as IdentitySection;
Configuration\RuntimeConfig.cs (3)
342internal IdentitySection Identity { 344return (IdentitySection) GetSection("system.web/identity", typeof(IdentitySection), ResultsIndex.Identity);
Configuration\SystemWebSectionGroup.cs (2)
137public IdentitySection Identity { 139return (IdentitySection) Sections["identity"];
Hosting\HostingEnvironment.cs (3)
110private IdentitySection _appIdentity; 458IdentitySection c = RuntimeConfig.GetAppConfig().Identity; 1749IdentitySection c = RuntimeConfig.GetConfig(virtualPath).Identity;
Hosting\ISAPIApplicationHost.cs (1)
123token = IdentitySection.CreateUserToken(username, password, out error);
HttpContext.cs (3)
2018IdentitySection c = RuntimeConfig.GetConfig(this).Identity; 2138IdentitySection c = RuntimeConfig.GetConfig(this).Identity; 2153IdentitySection c = RuntimeConfig.GetConfig(this).Identity;
HttpRuntime.cs (1)
1145IdentitySection c = RuntimeConfig.GetAppConfig().Identity;