10 references to X509Store
Aspire.Dashboard (1)
ResourceService\DashboardClient.cs (1)
196
using var store = new
X509Store
(storeName: storeName, storeLocation: location);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
CertificateLoader.cs (1)
33
using (var store = new
X509Store
(storeName, storeLocation))
System.Security.Cryptography (4)
System\Security\Cryptography\X509Certificates\X509Store.cs (4)
18
:
this
("MY", StoreLocation.CurrentUser)
23
:
this
(storeName, StoreLocation.CurrentUser)
33
:
this
("MY", storeLocation)
73
:
this
(storeName, storeLocation)
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\Utils.cs (2)
664
stores[0] = new
X509Store
(storeName, StoreLocation.CurrentUser);
665
stores[1] = new
X509Store
(storeName, StoreLocation.LocalMachine);
WebTransportInteractiveSampleApp (1)
Program.cs (1)
165
var store = new
X509Store
("KestrelSampleWebTransportCertificates", StoreLocation.CurrentUser);
WebTransportSampleApp (1)
Program.cs (1)
50
var store = new
X509Store
("KestrelSampleWebTransportCertificates", StoreLocation.CurrentUser);