| (VB.NET) List Certificates in the Current User Certificate Store (Windows Only)This is a Windows-only example to list the certificates in the current-user certificate store (located in the Windows Registry). Note: This example requires Chilkat v10.1.2 or greater. 
 ' This is a Windows-only example because it lists the certificates
' stored in the Windows Current User Certificate Store located in the
' Windows Registry.
Dim certStore As New Chilkat.CertStore
Dim readOnly As Boolean = True
Dim success As Boolean = certStore.OpenCurrentUserStore(readOnly)
If (success = False) Then
    Debug.WriteLine(certStore.LastErrorText)
    Exit Sub
End If
Dim cert As New Chilkat.Cert
Dim numCerts As Integer = certStore.NumCertificates
Dim i As Integer = 0
While i < numCerts
    certStore.GetCert(i,cert)
    Debug.WriteLine("DN = " & cert.SubjectDN)
    Debug.WriteLine("Email = " & cert.SubjectE)
    i = i + 1
End While
 |