8 references to HttpClientCredentialTypeHelper
System.ServiceModel (8)
System\ServiceModel\Configuration\HttpTransportSecurityElement.cs (1)
22
[ServiceModelEnumValidator(typeof(
HttpClientCredentialTypeHelper
))]
System\ServiceModel\Configuration\Properties.cs (2)
1400
properties.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));
4619
properties.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 (1)
20
[ServiceModelEnumValidator(typeof(
HttpClientCredentialTypeHelper
))]
System\ServiceModel\HttpTransportSecurity.cs (4)
38
if (!
HttpClientCredentialTypeHelper
.IsDefined(value))
97
http.AuthenticationScheme =
HttpClientCredentialTypeHelper
.MapToAuthenticationScheme(this.clientCredentialType);
105
transportSecurity.clientCredentialType =
HttpClientCredentialTypeHelper
.MapToClientCredentialType(http.AuthenticationScheme);
150
if (
HttpClientCredentialTypeHelper
.MapToClientCredentialType(http.AuthenticationScheme) == HttpClientCredentialType.Certificate)