public static CertificateStore GetCertificateStore(string storeName, StoreLocation storeLocation)
 {
     return(GetCertificateStore(storeName, CertificateStoreLocation.FromStoreLocation(storeLocation)));
 }
 /// <summary>
 /// Gets the system stores present in the specified Location.
 /// </summary>
 /// <param name="storeLocation">The System Stores Location.</param>
 /// <returns>An array of strings (never null).</returns>
 public static IEnumerable <CertificateStore> GetSystemStores(StoreLocation storeLocation)
 {
     return(GetSystemStores(CertificateStoreLocation.FromStoreLocation(storeLocation)));
 }