CsrResult record

Represents the result of creating a Certificate Signing Request (CSR), including the PEM-encoded CSR and the private key.

public record CsrResult

Public Members

name description
CsrResult(…) Represents the result of creating a Certificate Signing Request (CSR), including the PEM-encoded CSR and the private key.
Pem { get; set; } The PEM-encoded CSR string.
PrivateKey { get; set; } The private key associated with the CSR.

See Also