7 references to Certificate
System.ServiceModel (7)
System\ServiceModel\HttpBindingBase.cs (1)
402
if ((transport != null) && ((transport.ClientCredentialType == HttpClientCredentialType.
Certificate
) || (transport.ClientCredentialType == HttpClientCredentialType.InheritedFromHost)))
System\ServiceModel\HttpClientCredentialType.cs (2)
29
value == HttpClientCredentialType.
Certificate
||
38
case HttpClientCredentialType.
Certificate
:
System\ServiceModel\HttpTransportSecurity.cs (4)
129
https.RequireClientCertificate = (this.clientCredentialType == HttpClientCredentialType.
Certificate
);
136
transportSecurity.ClientCredentialType = HttpClientCredentialType.
Certificate
;
141
if (this.clientCredentialType == HttpClientCredentialType.
Certificate
)
150
if (HttpClientCredentialTypeHelper.MapToClientCredentialType(http.AuthenticationScheme) == HttpClientCredentialType.
Certificate
)