Class SecurityDetails
- Namespace
- PuppeteerSharp
- Assembly
- PuppeteerSharp.dll
Represents the security details when response was received over the secure connection.
public class SecurityDetails
- Inheritance
-
SecurityDetails
Constructors
SecurityDetails()
Initializes a new instance of the SecurityDetails class.
public SecurityDetails()
SecurityDetails(string, string, long, long, string)
Initializes a new instance of the SecurityDetails class.
public SecurityDetails(string subjectName, string issuer, long validFrom, long validTo, string protocol)
Parameters
subjectName
stringSubject name.
issuer
stringIssuer.
validFrom
longValid from.
validTo
longValid to.
protocol
stringProtocol.
SecurityDetails(string, string, long, long, string, string[])
Initializes a new instance of the SecurityDetails class.
public SecurityDetails(string subjectName, string issuer, long validFrom, long validTo, string protocol, string[] subjectAlternativeNames)
Parameters
subjectName
stringSubject name.
issuer
stringIssuer.
validFrom
longValid from.
validTo
longValid to.
protocol
stringProtocol.
subjectAlternativeNames
string[]Subject alternative names.
Properties
Issuer
Gets the issuer.
public string Issuer { get; set; }
Property Value
- string
The issuer.
Protocol
Gets the protocol.
public string Protocol { get; set; }
Property Value
- string
The protocol.
SubjectAlternativeNames
Gets the list of subject alternative names (SANs) of the certificate.
public string[] SubjectAlternativeNames { get; set; }
Property Value
- string[]
The list of subject alternative names (SANs) of the certificate.
SubjectName
Gets the name of the subject.
public string SubjectName { get; set; }
Property Value
- string
The name of the subject.
ValidFrom
Gets the valid from.
public long ValidFrom { get; set; }
Property Value
- long
The valid from.
ValidTo
Gets the valid to.
public long ValidTo { get; set; }
Property Value
- long
The valid to.