13 references to AuthenticationScheme
System.ServiceModel (13)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
301
if (HttpChannelFactory<IDuplexSessionChannel>.MapIdentity(this.RemoteAddress, this.channelFactory.
AuthenticationScheme
))
System\ServiceModel\Channels\HttpChannelFactory.cs (9)
506
if (this.
AuthenticationScheme
!= AuthenticationSchemes.Anonymous)
651
if (IsWindowsAuth(this.
AuthenticationScheme
))
789
if (
AuthenticationScheme
== AuthenticationSchemes.Basic)
859
tokenProvider = CreateAndOpenTokenProvider(timeoutHelper.RemainingTime(), this.
AuthenticationScheme
, to, via, channelParameters);
907
return MapIdentity(target, this.
AuthenticationScheme
);
1954
if (factory.
AuthenticationScheme
== AuthenticationSchemes.Anonymous)
1959
else if (factory.
AuthenticationScheme
== AuthenticationSchemes.Basic)
2019
if (factory.
AuthenticationScheme
== AuthenticationSchemes.Digest)
2023
else if (factory.
AuthenticationScheme
== AuthenticationSchemes.Ntlm)
System\ServiceModel\Channels\HttpChannelHelpers.cs (2)
3782
string message = SR.GetString(SR.HttpAuthorizationFailed, factory.
AuthenticationScheme
,
3790
string message = SR.GetString(SR.HttpAuthorizationForbidden, factory.
AuthenticationScheme
);
System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
117
if (!HttpChannelFactory<TChannel>.IsWindowsAuth(this.
AuthenticationScheme
)