CertEnumCRLsInStore

[DllImport("Crypt32.dll", SetLastError = true)]
public static extern IntPtr CertEnumCRLsInStore(
   IntPtr hCertStore,
   IntPtr pPrevCrlContext
);

Microsoft documentation: Link

Last updated