Class KeyCertificatePair (2.63.0)

public sealed class KeyCertificatePair

Key certificate pair (in PEM encoding).

Inheritance

object > KeyCertificatePair

Namespace

Grpc.Core

Assembly

Grpc.Core.Api.dll

Constructors

KeyCertificatePair(string, string)

public KeyCertificatePair(string certificateChain, string privateKey)

Creates a new certificate chain - private key pair.

Parameters
Name Description
certificateChain string

PEM encoded certificate chain.

privateKey string

PEM encoded private key.

Properties

CertificateChain

public string CertificateChain { get; }

PEM encoded certificate chain.

Property Value
Type Description
string

PrivateKey

public string PrivateKey { get; }

PEM encoded private key.

Property Value
Type Description
string