Class ResponseSecurityDetailsResult
- Namespace
- Microsoft.Playwright
- Assembly
- Microsoft.Playwright.dll
public class ResponseSecurityDetailsResult
- Inheritance
-
ResponseSecurityDetailsResult
- Inherited Members
Constructors
ResponseSecurityDetailsResult()
public ResponseSecurityDetailsResult()
Properties
Issuer
Common Name component of the Issuer field. from the certificate. This should only be used for informational purposes. Optional.
[JsonPropertyName("issuer")]
public string? Issuer { get; set; }
Property Value
Protocol
The specific TLS protocol used. (e.g. TLS 1.3
). Optional.
[JsonPropertyName("protocol")]
public string? Protocol { get; set; }
Property Value
SubjectName
Common Name component of the Subject field from the certificate. This should only be used for informational purposes. Optional.
[JsonPropertyName("subjectName")]
public string? SubjectName { get; set; }
Property Value
ValidFrom
Unix timestamp (in seconds) specifying when this cert becomes valid. Optional.
[JsonPropertyName("validFrom")]
public float? ValidFrom { get; set; }
Property Value
ValidTo
Unix timestamp (in seconds) specifying when this cert becomes invalid. Optional.
[JsonPropertyName("validTo")]
public float? ValidTo { get; set; }