'Declaration
<NotNullAttribute()> Function FindCertificates( _ ByVal thumbprint As String, _ ByVal withPrivateKeys As Boolean, _ ByVal password As String _ ) As PkiCertificateCollection
'Usage
Dim instance As IPkiStore Dim thumbprint As String Dim withPrivateKeys As Boolean Dim password As String Dim value As PkiCertificateCollection value = instance.FindCertificates(thumbprint, withPrivateKeys, password)
[NotNull()] PkiCertificateCollection FindCertificates( string thumbprint, bool withPrivateKeys, string password )
[NotNull()] PkiCertificateCollection^ FindCertificates( String^ thumbprint, bool withPrivateKeys, String^ password )
Parameters
- thumbprint
- A string representing the thumbprint of the certificate.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - withPrivateKeys
- Specifies whether the certificates should be returned with their private keys.
- password
- A password to access the private key.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
This method never returns null
(Nothing
in Visual Basic).
The individual elements of the returned value are never null
(Nothing
in Visual Basic).