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