10 references to X509Store
System (3)
security\system\security\cryptography\x509\x509store.cs (3)
52public X509Store () : this("MY", StoreLocation.CurrentUser) {} 54public X509Store (string storeName) : this (storeName, StoreLocation.CurrentUser) {} 58public X509Store (StoreLocation storeLocation) : this ("MY", storeLocation) {}
System.IdentityModel (1)
System\IdentityModel\Tokens\X509CertificateStoreTokenResolver.cs (1)
169store = new X509Store(this.storeName, this.storeLocation);
System.Security (6)
system\security\cryptography\pkcs\envelopedpkcs7.cs (4)
1047X509Store cuMy = new X509Store("MY", StoreLocation.CurrentUser); 1056X509Store lmMy = new X509Store("MY", StoreLocation.LocalMachine); 1085X509Store cuMy = new X509Store("AddressBook", StoreLocation.CurrentUser); 1094X509Store lmMy = new X509Store("AddressBook", StoreLocation.LocalMachine);
system\security\cryptography\xml\utils.cs (2)
882stores[0] = new X509Store(storeName, StoreLocation.CurrentUser); 883stores[1] = new X509Store(storeName, StoreLocation.LocalMachine);