TokenValidationParameters.IssuerSigningKeyResolverUsingConfiguration Property

Definition

Gets or sets a delegate that will be called to retrieve a SecurityKey used for signature validation using the TokenValidationParameters and BaseConfiguration.

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

Property Value

Remarks

This SecurityKey will be used to check the signature. This can be helpful when the SecurityToken does not contain a key identifier. This delegate should be used if properties from the configuration retrieved from the authority are necessary to resolve the issuer signing key. If both IssuerSigningKeyResolverUsingConfiguration and IssuerSigningKeyResolver are set, IssuerSigningKeyResolverUsingConfiguration takes priority.

Applies to