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