Share via


CredentialDescription.Base64EncodedValue Property

Definition

When SourceType is Base64Encoded, specifies the base64 encoded value of the certificate.

public string? Base64EncodedValue { get; set; }
member this.Base64EncodedValue : string with get, set
Public Property Base64EncodedValue As String

Property Value

Examples

The JSON fragment below describes a certificate by its base64 encoded value, to be used as a client credential in a confidential client application:

{
 "ClientCredentials": [
 {
  "SourceType": "Base64Encoded",
  "Base64EncodedValue": "MIIDHzCgegA.....r1n8Ta0="
 }]
}

The code below describes programmatically in C#, the same certificate.

CredentialDescription credentialDescription = new()
{
    SourceType = CredentialSource.Base64Encoded,
    Base64EncodedValue = "MIIDHzCgegA.....r1n8Ta0="
};

Applies to