OpenIdConnectAuthenticationOptions.BackchannelCertificateValidator Property

 

Gets or sets the a pinned certificate validator to use to validate the endpoints used when retrieving metadata.

Namespace:   Microsoft.Owin.Security.OpenIdConnect
Assembly:  Microsoft.Owin.Security.OpenIdConnect (in Microsoft.Owin.Security.OpenIdConnect.dll)

Syntax

public ICertificateValidator BackchannelCertificateValidator { get; set; }
public:
property ICertificateValidator^ BackchannelCertificateValidator {
    ICertificateValidator^ get();
    void set(ICertificateValidator^ value);
}
member BackchannelCertificateValidator : ICertificateValidator with get, set
Public Property BackchannelCertificateValidator As ICertificateValidator

Property Value

Type: Microsoft.Owin.Security.ICertificateValidator

The pinned certificate validator.

Remarks

If this property is null then the default certificate checks are performed, validating the subject name and if the signing chain is a trusted party.

See Also

OpenIdConnectAuthenticationOptions Class
Microsoft.Owin.Security.OpenIdConnect Namespace

Return to top