TokenValidationParameters.IssuerSigningKeyValidatorUsingConfiguration Property

Definition

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

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

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. This delegate should be used if properties from the configuration retrieved from the authority are necessary to validate the issuer signing key. If both IssuerSigningKeyValidatorUsingConfiguration and IssuerSigningKeyValidator are set, IssuerSigningKeyValidatorUsingConfiguration takes priority.

Applies to