TokenValidationParameters.IssuerSigningKeyValidator Property

Definition

Gets or sets a delegate for validating the SecurityKey that signed the token.

public Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidator IssuerSigningKeyValidator { get; set; }
member this.IssuerSigningKeyValidator : Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidator with get, set
Public Property IssuerSigningKeyValidator As IssuerSigningKeyValidator

Property Value

Remarks

If set, this delegate will be called to validate the SecurityKey that signed the token, instead of default processing. This means that no default SecurityKey validation will occur. Even if ValidateIssuerSigningKey is false, this delegate will still be called. If both IssuerSigningKeyValidatorUsingConfiguration and IssuerSigningKeyValidator are set, IssuerSigningKeyResolverUsingConfiguration takes priority.

Applies to