50 references to Anonymous
System (3)
net\System\Net\HttpListener.cs (3)
340private AuthenticationSchemes m_AuthenticationScheme = AuthenticationSchemes.Anonymous; 1450if (authorizationHeader != null && (authenticationScheme & ~AuthenticationSchemes.Anonymous) != AuthenticationSchemes.None) 1502if ((authenticationScheme & AuthenticationSchemes.Anonymous) != AuthenticationSchemes.None)
System.ServiceModel (38)
System\ServiceModel\Channels\AuthenticationSchemesHelper.cs (2)
17return authScheme.IsSet(AuthenticationSchemes.Anonymous); 49case AuthenticationSchemes.Anonymous:
System\ServiceModel\Channels\HttpChannelFactory.cs (7)
100bindingElement.AuthenticationScheme != AuthenticationSchemes.Anonymous) 151if (bindingElement.ProxyAuthenticationScheme == AuthenticationSchemes.Anonymous) 399case AuthenticationSchemes.Anonymous: 506if (this.AuthenticationScheme != AuthenticationSchemes.Anonymous) 510if (this.proxyFactory != null && this.proxyFactory.AuthenticationScheme != AuthenticationSchemes.Anonymous) 1954if (factory.AuthenticationScheme == AuthenticationSchemes.Anonymous) 2146if (this.authenticationScheme != AuthenticationSchemes.Anonymous)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
3444if (authenticationScheme != AuthenticationSchemes.Anonymous)
System\ServiceModel\Channels\HttpChannelListener.cs (3)
227return this.authenticationScheme != AuthenticationSchemes.Anonymous; 235return this.AuthenticationScheme.IsNotSet(AuthenticationSchemes.Anonymous); 725authenticationScheme != AuthenticationSchemes.Anonymous && //SPN list only needed with authentication (mixed mode uses own default list)
System\ServiceModel\Channels\HttpsChannelListener.cs (5)
73this.AuthenticationScheme.IsNotSet(AuthenticationSchemes.Anonymous)) 202else if (this.AuthenticationScheme == AuthenticationSchemes.Anonymous) 230else if (this.AuthenticationScheme == AuthenticationSchemes.Anonymous) 263else if (this.AuthenticationScheme == AuthenticationSchemes.Anonymous) 291else if (this.AuthenticationScheme == AuthenticationSchemes.Anonymous)
System\ServiceModel\Channels\HttpTransportBindingElement.cs (7)
428effectiveAuthenticationSchemes.IsNotSet(AuthenticationSchemes.Anonymous); 434effectiveAuthenticationSchemes.IsNotSet(AuthenticationSchemes.Anonymous); 616currentAuthenticationSchemes == AuthenticationSchemes.Anonymous && 617hostSupportedAuthenticationSchemes.IsNotSet(AuthenticationSchemes.Anonymous))) 624hostSupportedAuthenticationSchemes.IsSet(AuthenticationSchemes.Anonymous) && 630hostSupportedAuthenticationSchemes ^= AuthenticationSchemes.Anonymous; 736if (effectiveAuthenticationSchemes != AuthenticationSchemes.None && !(effectiveAuthenticationSchemes.IsSet(AuthenticationSchemes.Anonymous)))
System\ServiceModel\Channels\SharedHttpTransportManager.cs (1)
653result = AuthenticationSchemes.Anonymous;
System\ServiceModel\Channels\TransportDefaults.cs (2)
333internal const AuthenticationSchemes AuthenticationScheme = AuthenticationSchemes.Anonymous; 339internal const AuthenticationSchemes ProxyAuthenticationScheme = AuthenticationSchemes.Anonymous;
System\ServiceModel\Configuration\Properties.cs (2)
1361properties.Add(new ConfigurationProperty("authenticationScheme", typeof(System.Net.AuthenticationSchemes), System.Net.AuthenticationSchemes.Anonymous, null, new System.ServiceModel.Configuration.StandardRuntimeFlagEnumValidator<System.Net.AuthenticationSchemes>(), System.Configuration.ConfigurationPropertyOptions.None)); 1370properties.Add(new ConfigurationProperty("proxyAuthenticationScheme", typeof(System.Net.AuthenticationSchemes), System.Net.AuthenticationSchemes.Anonymous, null, new System.ServiceModel.Configuration.StandardRuntimeEnumValidator(typeof(System.Net.AuthenticationSchemes)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\HttpClientCredentialType.cs (2)
41result = AuthenticationSchemes.Anonymous; 70case AuthenticationSchemes.Anonymous:
System\ServiceModel\HttpProxyCredentialType.cs (2)
35result = AuthenticationSchemes.Anonymous; 61case AuthenticationSchemes.Anonymous:
System\ServiceModel\HttpTransportSecurity.cs (4)
113http.AuthenticationScheme = AuthenticationSchemes.Anonymous; 114http.ProxyAuthenticationScheme = AuthenticationSchemes.Anonymous; 123return http.AuthenticationScheme == AuthenticationSchemes.Anonymous && http.ProxyAuthenticationScheme == AuthenticationSchemes.Anonymous && http.Realm == DefaultRealm;
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
253if (bindingElementAuthenticationSchemes != AuthenticationSchemes.Anonymous)
System\ServiceModel\Activation\MetabaseSettings.cs (2)
178return AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm; 246retValue = retValue | AuthenticationSchemes.Anonymous;
System.ServiceModel.Web (6)
System\ServiceModel\Web\AutomaticEndpointGenerator.cs (2)
73if (supportedSchemes == (AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm)) 81supportedSchemes = AuthenticationSchemes.Anonymous;
System\ServiceModel\Web\WebServiceHost.cs (4)
65if (supportedSchemes == (AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm)) 73supportedSchemes = AuthenticationSchemes.Anonymous; 145else if (supportedSchemes != AuthenticationSchemes.None && supportedSchemes != AuthenticationSchemes.Anonymous) 367case AuthenticationSchemes.Anonymous: