CredentialDescription.Base64EncodedValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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="
};