31 references to HttpProxyCredentialType
System.ServiceModel (31)
System\ServiceModel\Configuration\HttpTransportSecurityElement.cs (2)
31public HttpProxyCredentialType ProxyCredentialType 33get { return (HttpProxyCredentialType)base[ConfigurationStrings.ProxyCredentialType]; }
System\ServiceModel\Configuration\Properties.cs (4)
1401properties.Add(new ConfigurationProperty("proxyCredentialType", typeof(System.ServiceModel.HttpProxyCredentialType), System.ServiceModel.HttpProxyCredentialType.None, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.HttpProxyCredentialTypeHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 4620properties.Add(new ConfigurationProperty("proxyCredentialType", typeof(System.ServiceModel.HttpProxyCredentialType), System.ServiceModel.HttpProxyCredentialType.None, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.HttpProxyCredentialTypeHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\WSHttpTransportSecurityElement.cs (2)
29public HttpProxyCredentialType ProxyCredentialType 31get { return (HttpProxyCredentialType)base[ConfigurationStrings.ProxyCredentialType]; }
System\ServiceModel\HttpProxyCredentialType.cs (19)
20internal static bool IsDefined(HttpProxyCredentialType value) 22return (value == HttpProxyCredentialType.None || 23value == HttpProxyCredentialType.Basic || 24value == HttpProxyCredentialType.Digest || 25value == HttpProxyCredentialType.Ntlm || 26value == HttpProxyCredentialType.Windows); 29internal static AuthenticationSchemes MapToAuthenticationScheme(HttpProxyCredentialType proxyCredentialType) 34case HttpProxyCredentialType.None: 37case HttpProxyCredentialType.Basic: 40case HttpProxyCredentialType.Digest: 43case HttpProxyCredentialType.Ntlm: 46case HttpProxyCredentialType.Windows: 56internal static HttpProxyCredentialType MapToProxyCredentialType(AuthenticationSchemes authenticationSchemes) 58HttpProxyCredentialType result; 62result = HttpProxyCredentialType.None; 65result = HttpProxyCredentialType.Basic; 68result = HttpProxyCredentialType.Digest; 71result = HttpProxyCredentialType.Ntlm; 74result = HttpProxyCredentialType.Windows;
System\ServiceModel\HttpTransportSecurity.cs (4)
17internal const HttpProxyCredentialType DefaultProxyCredentialType = HttpProxyCredentialType.None; 21HttpProxyCredentialType proxyCredentialType; 46public HttpProxyCredentialType ProxyCredentialType