X509.CertIssuerName Method
Get the issuer name of an X.509 certificate.
Syntax
[C#]
public static string CertIssuerName(
string certFile,
string delimiter
)
[VB.NET]
Public Shared Function CertIssuerName ( _
certFile As String, _
delimiter As String _
) As String
Parameters
- certFile
- Filename of certificate file (or its base64 representation)
- delimiter
- Optional character for delimiter [default = semicolon ";"]
Return Value
Issuer name or Empty string if error
Remarks
Use X509.QueryCert with query "issuerName" for more output options.
See Also
VB6/C equivalent: X509_CertIssuerName
[Contents] [Index]