13 references to ServiceCertificate
System.ServiceModel (13)
System\ServiceModel\Channels\HttpsChannelFactory.cs (2)
34
if (credentials != null && credentials.
ServiceCertificate
.SslCertificateAuthentication != null)
36
this.sslCertificateValidator = credentials.
ServiceCertificate
.SslCertificateAuthentication.GetCertificateValidator();
System\ServiceModel\ComIntegration\ChannelCredentials.cs (5)
122
channelCredentials.
ServiceCertificate
.Authentication.TrustedStoreLocation = location;
123
channelCredentials.
ServiceCertificate
.Authentication.RevocationMode = mode;
124
channelCredentials.
ServiceCertificate
.Authentication.CertificateValidationMode = validationMode;
192
channelCredentials.
ServiceCertificate
.SetDefaultCertificate(location, name, type, findValue);
224
channelCredentials.
ServiceCertificate
.DefaultCertificate = cert;
System\ServiceModel\Configuration\ClientCredentialsElement.cs (1)
151
this.ServiceCertificate.ApplyConfiguration(behavior.
ServiceCertificate
);
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (5)
297
parent.
ServiceCertificate
.ScopedCertificates.TryGetValue(targetAddress.Uri, out targetServerCertificate);
301
targetServerCertificate = parent.
ServiceCertificate
.DefaultCertificate;
319
return new X509SecurityTokenAuthenticator(parent.
ServiceCertificate
.Authentication.GetCertificateValidator(), false);
324
if (parent.
ServiceCertificate
.SslCertificateAuthentication != null)
326
return new X509SecurityTokenAuthenticator(parent.
ServiceCertificate
.SslCertificateAuthentication.GetCertificateValidator(), false);