DetermineStoreType() публичный статический Метод

Detects the type of store represented by the path.
public static DetermineStoreType ( string storePath ) : string
storePath string
Результат string
Пример #1
0
        /// <summary>
        /// Opens the store.
        /// </summary>
        /// <param name="path">The path.</param>
        /// <returns>The store.</returns>
        public static ICertificateStore OpenStore(string path)
        {
            ICertificateStore store = CertificateStoreIdentifier.CreateStore(CertificateStoreIdentifier.DetermineStoreType(path));

            store.Open(path);
            return(store);
        }