7 references to GetCertificateFromStore
System.ServiceModel (7)
System\ServiceModel\Configuration\IssuedTokenServiceElement.cs (1)
184issuedToken.KnownCertificates.Add(SecurityUtils.GetCertificateFromStore(src.StoreName, src.StoreLocation, src.X509FindType, src.FindValue, null));
System\ServiceModel\Security\PeerCredential.cs (1)
106this.certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null);
System\ServiceModel\Security\X509CertificateInitiatorClientCredential.cs (1)
59this.certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null);
System\ServiceModel\Security\X509CertificateInitiatorServiceCredential.cs (1)
69this.certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null);
System\ServiceModel\Security\X509CertificateRecipientClientCredential.cs (2)
107this.defaultCertificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null); 130X509Certificate2 certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null);
System\ServiceModel\Security\X509CertificateRecipientServiceCredential.cs (1)
62this.certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null);