6 instantiations of StorePal
System.Security.Cryptography (6)
System\Security\Cryptography\X509Certificates\FindPal.Windows.cs (1)
430using (StorePal resultsStore = new StorePal(findResults))
System\Security\Cryptography\X509Certificates\StorePal.Windows.cs (1)
29var pal = new StorePal(certStoreHandle);
System\Security\Cryptography\X509Certificates\StorePal.Windows.Import.cs (4)
114return new StorePal(certStore); 142return new StorePal(certStore); 183return new StorePal(certStore); 212return new StorePal(certStore);
21 references to StorePal
System.Security.Cryptography (21)
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.cs (3)
550using (IExportPal storePal = StorePal.FromCertificate(this)) 560using (IExportPal storePal = StorePal.FromCertificate(this)) 568using (IExportPal storePal = StorePal.FromCertificate(this))
System\Security\Cryptography\X509Certificates\ChainPal.Windows.BuildChain.cs (2)
115return ((StorePal)StorePal.LinkFromCertificateCollection(extraStore!)).SafeCertStoreHandle;
System\Security\Cryptography\X509Certificates\FindPal.Windows.cs (4)
14private readonly StorePal _storePal; 20_storePal = (StorePal)StorePal.LinkFromCertificateCollection(findFrom); 430using (StorePal resultsStore = new StorePal(findResults))
System\Security\Cryptography\X509Certificates\StorePal.Windows.cs (1)
29var pal = new StorePal(certStoreHandle);
System\Security\Cryptography\X509Certificates\X509Certificate2Collection.cs (9)
110using (IExportPal storePal = StorePal.LinkFromCertificateCollection(this)) 137using (IExportPal storePal = StorePal.LinkFromCertificateCollection(this)) 175using (IExportPal storePal = StorePal.LinkFromCertificateCollection(this)) 184using (IExportPal storePal = StorePal.LinkFromCertificateCollection(this)) 221using (ILoaderPal storePal = StorePal.FromBlob(rawData, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 271using (ILoaderPal storePal = StorePal.FromBlob(rawData, safePasswordHandle, keyStorageFlags)) 282using (ILoaderPal storePal = StorePal.FromFile(fileName, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 296using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags)) 322using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags))
System\Security\Cryptography\X509Certificates\X509Store.cs (2)
81_storePal = StorePal.FromHandle(storeHandle); 108_storePal = StorePal.FromSystemStore(Name!, Location, flags);