57 references to HttpClientCredentialType
System.ServiceModel (49)
System\ServiceModel\BasicHttpBinding.cs (1)
145this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)
System\ServiceModel\BasicHttpsBinding.cs (1)
81this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)
System\ServiceModel\Configuration\HttpTransportSecurityElement.cs (2)
23public HttpClientCredentialType ClientCredentialType 25get { return (HttpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; }
System\ServiceModel\Configuration\Properties.cs (4)
1400properties.Add(new ConfigurationProperty("clientCredentialType", typeof(System.ServiceModel.HttpClientCredentialType), System.ServiceModel.HttpClientCredentialType.None, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.HttpClientCredentialTypeHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 4619properties.Add(new ConfigurationProperty("clientCredentialType", typeof(System.ServiceModel.HttpClientCredentialType), System.ServiceModel.HttpClientCredentialType.Windows, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.HttpClientCredentialTypeHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\WSHttpTransportSecurityElement.cs (3)
19[ConfigurationProperty(ConfigurationStrings.ClientCredentialType, DefaultValue = HttpClientCredentialType.Windows)] 21public HttpClientCredentialType ClientCredentialType 23get { return (HttpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; }
System\ServiceModel\HttpBindingBase.cs (2)
402if ((transport != null) && ((transport.ClientCredentialType == HttpClientCredentialType.Certificate) || (transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)))
System\ServiceModel\HttpClientCredentialType.cs (23)
22internal static bool IsDefined(HttpClientCredentialType value) 24return (value == HttpClientCredentialType.None || 25value == HttpClientCredentialType.Basic || 26value == HttpClientCredentialType.Digest || 27value == HttpClientCredentialType.Ntlm || 28value == HttpClientCredentialType.Windows || 29value == HttpClientCredentialType.Certificate || 30value == HttpClientCredentialType.InheritedFromHost); 33internal static AuthenticationSchemes MapToAuthenticationScheme(HttpClientCredentialType clientCredentialType) 38case HttpClientCredentialType.Certificate: 40case HttpClientCredentialType.None: 43case HttpClientCredentialType.Basic: 46case HttpClientCredentialType.Digest: 49case HttpClientCredentialType.Ntlm: 52case HttpClientCredentialType.Windows: 55case HttpClientCredentialType.InheritedFromHost: 65internal static HttpClientCredentialType MapToClientCredentialType(AuthenticationSchemes authenticationSchemes) 67HttpClientCredentialType result; 71result = HttpClientCredentialType.None; 74result = HttpClientCredentialType.Basic; 77result = HttpClientCredentialType.Digest; 80result = HttpClientCredentialType.Ntlm; 83result = HttpClientCredentialType.Windows;
System\ServiceModel\HttpTransportSecurity.cs (8)
16internal const HttpClientCredentialType DefaultClientCredentialType = HttpClientCredentialType.None; 20HttpClientCredentialType clientCredentialType; 33public HttpClientCredentialType ClientCredentialType 129https.RequireClientCertificate = (this.clientCredentialType == HttpClientCredentialType.Certificate); 136transportSecurity.ClientCredentialType = HttpClientCredentialType.Certificate; 141if (this.clientCredentialType == HttpClientCredentialType.Certificate) 150if (HttpClientCredentialTypeHelper.MapToClientCredentialType(http.AuthenticationScheme) == HttpClientCredentialType.Certificate)
System\ServiceModel\NetHttpBinding.cs (1)
119this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)
System\ServiceModel\NetHttpsBinding.cs (1)
112this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)
System\ServiceModel\WSHttpBinding.cs (1)
101security.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)
System\ServiceModel\WSHttpSecurity.cs (2)
33transportSecurity.ClientCredentialType = HttpClientCredentialType.Windows; 152return this.Transport.ClientCredentialType != HttpClientCredentialType.Windows
System.ServiceModel.Web (8)
System\ServiceModel\Web\WebChannelFactory.cs (1)
97result.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
System\ServiceModel\Web\WebServiceHost.cs (6)
354whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Digest; 359whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows; 362whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Ntlm; 365whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic; 368whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.None; 371whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.InheritedFromHost;
System\ServiceModel\WebHttpBinding.cs (1)
208security.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)