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