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