Show / Hide Table of Contents

Class CertificateAndPrivateKeyPair

A class to hold X509 certificate and private key together.

Inheritance
object
CertificateAndPrivateKeyPair
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.Common.Auth
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class CertificateAndPrivateKeyPair

Properties

Certificate

Declaration
public X509Certificate2 Certificate { get; set; }
Property Value
Type Description
X509Certificate2

PrivateKey

Declaration
public RsaKeyParameters PrivateKey { get; set; }
Property Value
Type Description
RsaKeyParameters
In this article
Back to top