Table of Contents

Class ConnectionSigningKeySaml

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Key pair with 'key' and 'cert' properties for signing SAML messages

[Serializable]
public record ConnectionSigningKeySaml : IJsonOnDeserialized, IEquatable<ConnectionSigningKeySaml>
Inheritance
ConnectionSigningKeySaml
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

Cert

Base64-encoded X.509 certificate in PEM format used by Auth0 to sign SAML requests and logout messages.

[JsonPropertyName("cert")]
public string? Cert { get; set; }

Property Value

string

Key

Private key in PEM format used by Auth0 to sign SAML requests and logout messages.

[JsonPropertyName("key")]
public string? Key { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.