Click or drag to resize

CefSslInfo Class

Class representing SSL information.
Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefSslInfo

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefSslInfo : IDisposable

The CefSslInfo type exposes the following members.

Properties
 NameDescription
Public propertyCertStatus Returns a bitmask containing any and all problems verifying the server certificate.
Public propertyDerEncoded Returns the DER encoded data for the X.509 certificate.
Public propertyIsCertStatusError Returns true if the certificate status has any error, major or minor.
Public propertyIsCertStatusMinorError Returns true if the certificate status represents only minor errors (e.g. failure to verify certificate revocation).
Public propertyIssuer Returns the issuer of the X.509 certificate.
Public propertyIssuerChainSize Returns the number of certificates in the issuer chain. If 0, the certificate is self-signed.
Public propertyPemEncoded Returns the PEM encoded data for the X.509 certificate.
Public propertySerialNumber Returns the DER encoded serial number for the X.509 certificate. The value possibly includes a leading 00 byte.
Public propertySubject 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.
Public propertyValidExpiry Returns the date after which the X.509 certificate is invalid. CefTime.GetTimeT() will return 0 if no date was specified.
Public propertyValidStart Returns the date before which the X.509 certificate is invalid. CefTime.GetTimeT() will return 0 if no date was specified.
Top
Methods
 NameDescription
Public methodDisposeReleases all resources used by the CefSslInfo
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalize
(Overrides ObjectFinalize)
Public methodGetDEREncodedIssuerChain Returns the DER encoded data for the certificate issuer chain. If we failed to encode a certificate in the chain it is still present in the array but is an empty string.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetPEMEncodedIssuerChain Returns the PEM encoded data for the certificate issuer chain. If we failed to encode a certificate in the chain it is still present in the array but is an empty string.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also