Show / Hide Table of Contents

Class PemEncodedPublicKey

A PEM-encoded public key used for verifying the JWT signature.

Inheritance
object
StaticPublicKey
PemEncodedPublicKey
Inherited Members
StaticPublicKey.Kid
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class PemEncodedPublicKey : StaticPublicKey

Properties

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The content of the PEM-encoded public key.

Remarks

Required

In this article
Back to top