Table of Contents

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 string

Subject name.

issuer string

Issuer.

validFrom long

Valid from.

validTo long

Valid to.

protocol string

Protocol.

Properties

Issuer

Gets the issuer.

public string Issuer { get; }

Property Value

string

The issuer.

Protocol

Gets the protocol.

public string Protocol { get; }

Property Value

string

The protocol.

SubjectName

Gets the name of the subject.

public string SubjectName { get; }

Property Value

string

The name of the subject.

ValidFrom

Gets the valid from.

public long ValidFrom { get; }

Property Value

long

The valid from.

ValidTo

Gets the valid to.

public long ValidTo { get; }

Property Value

long

The valid to.

See Also