CertCloseStore

[DllImport("Crypt32.dll", SetLastError = true)]
public static extern bool CertCloseStore(
   IntPtr hCertStore,
   uint dwFlags
);

Microsoft documentation: Link

Last updated