TokenValidationParameters.IssuerValidator Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a delegate that will be used to validate the issuer of the token.
public Microsoft.IdentityModel.Tokens.IssuerValidator IssuerValidator { get; set; }
member this.IssuerValidator : Microsoft.IdentityModel.Tokens.IssuerValidator with get, set
Public Property IssuerValidator As IssuerValidator
Property Value
Remarks
If set, this delegate will be called to validate the 'issuer' of the token, instead of default processing. This means that no default 'issuer' validation will occur. Even if ValidateIssuer is false, this delegate will still be called. If both IssuerValidatorUsingConfiguration and IssuerValidator are set, IssuerValidatorUsingConfiguration takes priority.