type ICefX509CertPrincipal = interface(ICefBaseRefCounted)
Interface representing the issuer or subject field of an X.509 certificate.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_x509_certificate_capi.h">CEF source file: /include/capi/cef_x509_certificate_capi.h (cef_x509_cert_principal_t))
| Public | function GetDisplayName: ustring; |
| Public | function GetCommonName: ustring; |
| Public | function GetLocalityName: ustring; |
| Public | function GetStateOrProvinceName: ustring; |
| Public | function GetCountryName: ustring; |
| Public | procedure GetOrganizationNames(const names: TStrings); |
| Public | procedure GetOrganizationUnitNames(const names: TStrings); |
| Public | function GetDisplayName: ustring; |
|
Returns a name that can be used to represent the issuer. It tries in this order: Common Name (CN), Organization Name (O) and Organizational Unit Name (OU) and returns the first non-NULL one found. Attributes
| |
| Public | function GetCommonName: ustring; |
|
Returns the common name. | |
| Public | function GetLocalityName: ustring; |
|
Returns the locality name. | |
| Public | function GetStateOrProvinceName: ustring; |
|
Returns the state or province name. | |
| Public | function GetCountryName: ustring; |
|
Returns the country name. | |
| Public | procedure GetOrganizationNames(const names: TStrings); |
|
Retrieve the list of organization names. | |
| Public | procedure GetOrganizationUnitNames(const names: TStrings); |
|
Retrieve the list of organization unit names. | |