14 references to WindowsAuthentication
System.ServiceModel (14)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (2)
224if (specificBehavior.WindowsAuthentication != null) 226instance.SetProperty(AdministrationStrings.WindowsAuthentication, String.Format(CultureInfo.InvariantCulture, "{0}: {1}", AdministrationStrings.AllowAnonymous, specificBehavior.WindowsAuthentication.AllowAnonymousLogons.ToString()));
System\ServiceModel\Channels\HttpChannelListener.cs (3)
428serviceCredentials.UserNameAuthentication.IncludeWindowsGroups != serviceCredentials.WindowsAuthentication.IncludeWindowsGroups) 434serviceCredentials.WindowsAuthentication.IncludeWindowsGroups))); 437this.extractGroupsForWindowsAccounts = serviceCredentials.WindowsAuthentication.IncludeWindowsGroups;
System\ServiceModel\Configuration\ServiceCredentialsElement.cs (1)
150this.WindowsAuthentication.ApplyConfiguration(behavior.WindowsAuthentication);
System\ServiceModel\Description\ServiceCredentials.cs (1)
325this.WindowsAuthentication.MakeReadOnly();
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (7)
142authenticator.AllowUnauthenticatedCallers = parent.WindowsAuthentication.AllowAnonymousLogons; 143authenticator.ExtractGroupsForWindowsAccounts = parent.WindowsAuthentication.IncludeWindowsGroups; 350new KerberosSecurityTokenAuthenticator(parent.WindowsAuthentication.IncludeWindowsGroups)); 429parent.WindowsAuthentication.IncludeWindowsGroups != parent.UserNameAuthentication.IncludeWindowsGroups) 435parent.WindowsAuthentication.IncludeWindowsGroups))); 438result = new SspiSecurityTokenProvider(null, parent.WindowsAuthentication.IncludeWindowsGroups, parent.WindowsAuthentication.AllowAnonymousLogons);