/// <summary>
 /// Returns the issuer of the X.509 certificate.
 /// </summary>
 public CefX509CertPrincipal GetIssuer()
 {
     return(CefX509CertPrincipal.FromNative(
                cef_x509certificate_t.get_issuer(_self)
                ));
 }
 /// <summary>
 /// Returns the subject of the X.509 certificate. For HTTPS server
 /// certificates this represents the web server.  The common name of the
 /// subject should match the host name of the web server.
 /// </summary>
 public CefX509CertPrincipal GetSubject()
 {
     return(CefX509CertPrincipal.FromNative(
                cef_x509certificate_t.get_subject(_self)
                ));
 }