GoogleAuthenticationOptions.BackchannelCertificateValidator Property

Gets or sets the a pinned certificate validator to use to validate the endpoints used in back channel communications belong to Google.

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

Syntax

'Declaration
Public Property BackchannelCertificateValidator As ICertificateValidator 
    Get 
    Set
'Usage
Dim instance As GoogleAuthenticationOptions 
Dim value As ICertificateValidator 

value = instance.BackchannelCertificateValidator

instance.BackchannelCertificateValidator = value
public ICertificateValidator BackchannelCertificateValidator { get; set; }
public:
property ICertificateValidator^ BackchannelCertificateValidator {
    ICertificateValidator^ get ();
    void set (ICertificateValidator^ value);
}
member BackchannelCertificateValidator : ICertificateValidator with get, set
function get BackchannelCertificateValidator () : ICertificateValidator 
function set BackchannelCertificateValidator (value : 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

Reference

GoogleAuthenticationOptions Class

Microsoft.Owin.Security.Google Namespace