12 writes to ClientCredentialType
System.ServiceModel (4)
System\ServiceModel\Configuration\HttpTransportSecurityElement.cs (1)
65security.ClientCredentialType = this.ClientCredentialType;
System\ServiceModel\Configuration\WSHttpTransportSecurityElement.cs (1)
63security.ClientCredentialType = this.ClientCredentialType;
System\ServiceModel\HttpTransportSecurity.cs (1)
136transportSecurity.ClientCredentialType = HttpClientCredentialType.Certificate;
System\ServiceModel\WSHttpSecurity.cs (1)
33transportSecurity.ClientCredentialType = HttpClientCredentialType.Windows;
System.ServiceModel.Web (8)
System\ServiceModel\Configuration\WebHttpSecurityElement.cs (1)
75security.ClientCredentialType = this.Transport.ClientCredentialType;
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;
21 references to ClientCredentialType
System.ServiceModel (17)
System\ServiceModel\BasicHttpBinding.cs (2)
145this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 147throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, this.BasicHttpSecurity.Transport.ClientCredentialType)));
System\ServiceModel\BasicHttpsBinding.cs (2)
81this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 83throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, this.BasicHttpSecurity.Transport.ClientCredentialType)));
System\ServiceModel\Configuration\HttpTransportSecurityElement.cs (1)
77SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ClientCredentialType, security.ClientCredentialType);
System\ServiceModel\Configuration\WSHttpTransportSecurityElement.cs (1)
75SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ClientCredentialType, security.ClientCredentialType);
System\ServiceModel\HttpBindingBase.cs (3)
402if ((transport != null) && ((transport.ClientCredentialType == HttpClientCredentialType.Certificate) || (transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost))) 404throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.UnsupportedSecuritySetting, "Transport.ClientCredentialType", transport.ClientCredentialType)));
System\ServiceModel\HttpTransportSecurity.cs (1)
177return this.ClientCredentialType != DefaultClientCredentialType;
System\ServiceModel\NetHttpBinding.cs (2)
119this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 121throw FxTrace.Exception.AsError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, this.BasicHttpSecurity.Transport.ClientCredentialType)));
System\ServiceModel\NetHttpsBinding.cs (2)
112this.BasicHttpSecurity.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 114throw FxTrace.Exception.AsError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, this.BasicHttpSecurity.Transport.ClientCredentialType)));
System\ServiceModel\WSHttpBinding.cs (2)
101security.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 103throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, security.Transport.ClientCredentialType)));
System\ServiceModel\WSHttpSecurity.cs (1)
152return this.Transport.ClientCredentialType != HttpClientCredentialType.Windows
System.ServiceModel.Web (4)
System\ServiceModel\Configuration\WebHttpSecurityElement.cs (2)
88if (IsNonDefaultValue(this.Transport, ConfigurationStrings.ClientCredentialType, security.ClientCredentialType)) 90this.Transport.ClientCredentialType = security.ClientCredentialType;
System\ServiceModel\WebHttpBinding.cs (2)
208security.Transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost) 210throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.HttpClientCredentialTypeInvalid, security.Transport.ClientCredentialType)));