10 references to X509Store
Aspire.Dashboard (1)
ResourceService\DashboardClient.cs (1)
196using var store = new X509Store(storeName: storeName, storeLocation: location);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
CertificateLoader.cs (1)
33using (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)
664stores[0] = new X509Store(storeName, StoreLocation.CurrentUser); 665stores[1] = new X509Store(storeName, StoreLocation.LocalMachine);
WebTransportInteractiveSampleApp (1)
Program.cs (1)
165var store = new X509Store("KestrelSampleWebTransportCertificates", StoreLocation.CurrentUser);
WebTransportSampleApp (1)
Program.cs (1)
50var store = new X509Store("KestrelSampleWebTransportCertificates", StoreLocation.CurrentUser);