MicrosoftIdentityOptions.ClientCertificates Property

Definition

Description of the certificates used to prove the identity of the web app or web API.

public System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription>? ClientCertificates { get; set; }
member this.ClientCertificates : seq<Microsoft.Identity.Web.CertificateDescription> with get, set
Public Property ClientCertificates As IEnumerable(Of CertificateDescription)

Property Value

Examples

An example in the appsetting.json:

"ClientCertificates": [
  {
    "SourceType": "StoreWithDistinguishedName",
     "CertificateStorePath": "CurrentUser/My",
     "CertificateDistinguishedName": "CN=WebAppCallingWebApiCert"
    }
   ]
         See also https://aka.ms/ms-id-web-certificates.

Applies to