MicrosoftIdentityOptions.ClientCertificates 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.
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.