20 references to Anonymous
dotnet-svcutil-lib (14)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AuthenticationSchemesHelper.cs (1)
20case AuthenticationSchemes.Anonymous:
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (5)
81bindingElement.AuthenticationScheme != AuthenticationSchemes.Anonymous) 310if (_authenticationScheme != AuthenticationSchemes.Anonymous) 368case AuthenticationSchemes.Anonymous: 477return _authenticationScheme != AuthenticationSchemes.Anonymous; 1247return _factory.AuthenticationScheme != AuthenticationSchemes.Anonymous;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
58if (authenticationScheme == AuthenticationSchemes.Anonymous)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
354effectiveAuthenticationSchemes.IsNotSet(AuthenticationSchemes.Anonymous); 360effectiveAuthenticationSchemes.IsNotSet(AuthenticationSchemes.Anonymous);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDefaults.cs (1)
259public const AuthenticationSchemes AuthenticationScheme = AuthenticationSchemes.Anonymous;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpClientCredentialType.cs (2)
42result = AuthenticationSchemes.Anonymous; 71case AuthenticationSchemes.Anonymous:
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (2)
90http.AuthenticationScheme = AuthenticationSchemes.Anonymous; 99return http.AuthenticationScheme == AuthenticationSchemes.Anonymous && http.Realm == DefaultRealm;
System.Net.HttpListener (5)
System\Net\HttpListener.cs (1)
27private AuthenticationSchemes _authenticationScheme = AuthenticationSchemes.Anonymous;
System\Net\Managed\HttpListenerContext.Managed.cs (1)
35if (expectedSchemes == AuthenticationSchemes.Anonymous)
System\Net\Managed\ListenerAsyncResult.Managed.cs (3)
122context.AuthenticationSchemes = AuthenticationSchemes.Anonymous; 132(context.AuthenticationSchemes & AuthenticationSchemes.Anonymous) != AuthenticationSchemes.Anonymous &&
System.ServiceModel.Http.Tests (1)
ServiceModel\BasicHttpBindingTest.cs (1)
320[InlineData(HttpProxyCredentialType.None, AuthenticationSchemes.Anonymous)]