8 writes to AuthenticationScheme
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (4)
511this.AuthenticationScheme = AuthenticationSchemes.Basic; 514this.AuthenticationScheme = AuthenticationSchemes.Digest; 517this.AuthenticationScheme = AuthenticationSchemes.Negotiate; 520this.AuthenticationScheme = AuthenticationSchemes.Ntlm;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (2)
78http.AuthenticationScheme = HttpClientCredentialTypeHelper.MapToAuthenticationScheme(_clientCredentialType); 90http.AuthenticationScheme = AuthenticationSchemes.Anonymous;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy12.cs (2)
113httpsBinding.AuthenticationScheme = AuthenticationSchemes.Basic; 117httpsBinding.AuthenticationScheme = AuthenticationSchemes.Digest;
19 references to AuthenticationScheme
dotnet-svcutil-lib (19)
CodeDomFixup\MethodCreationHelper.cs (3)
1401if (defaultBindingElement.AuthenticationScheme != bindingElement.AuthenticationScheme) 1410bindingElement.AuthenticationScheme.ToString())));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (4)
81bindingElement.AuthenticationScheme != AuthenticationSchemes.Anonymous) 94if (!bindingElement.AuthenticationScheme.IsSingleton()) 97bindingElement.AuthenticationScheme)); 99_authenticationScheme = bindingElement.AuthenticationScheme;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (1)
122AuthenticationSchemes effectiveAuthenticationSchemes = this.AuthenticationScheme;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
408AuthenticationSchemes effectiveAuthenticationSchemes = this.AuthenticationScheme;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
222Fx.Assert(http.AuthenticationScheme.IsSingleton(), "authenticationScheme used in an Http(s)ChannelFactory must be a singleton value.");
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (3)
84transportSecurity._clientCredentialType = HttpClientCredentialTypeHelper.MapToClientCredentialType(http.AuthenticationScheme); 99return http.AuthenticationScheme == AuthenticationSchemes.Anonymous && http.Realm == DefaultRealm; 126if (HttpClientCredentialTypeHelper.MapToClientCredentialType(http.AuthenticationScheme) == HttpClientCredentialType.Certificate)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy12.cs (5)
54Fx.Assert(httpsBinding.AuthenticationScheme.IsSingleton(), "authenticationScheme must be a singleton value for security-mode TransportWithMessageCredential."); 58httpsBinding.AuthenticationScheme == AuthenticationSchemes.Basic || 59httpsBinding.AuthenticationScheme == AuthenticationSchemes.Digest) 66if (httpsBinding.AuthenticationScheme == AuthenticationSchemes.Basic) 70else if (httpsBinding.AuthenticationScheme == AuthenticationSchemes.Digest)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
323if (!transport.AuthenticationScheme.IsSingleton())