public TimeSpan ExpirationTimeClockTolerance { get; set; }
Clock tolerance for the expiration check.
Causes a JWT to pass validation up to this duration after it really expired;
this is to allow for possible local-client clock skew. Defaults to zero seconds.
public TimeSpan IssuedAtClockTolerance { get; set; }
Clock tolerance for the issued-at check.
Causes a JWT to pass validation up to this duration before it is really valid;
this is to allow for possible local-client clock skew. Defaults to 30 seconds.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The `GoogleJsonWebSignature.ValidationSettings` class provides settings for validating JSON Web Signatures, with version 1.69.0 being the most recent."],["This class inherits from `object` and contains properties like `Audience`, `Clock`, `ExpirationTimeClockTolerance`, `ForceGoogleCertRefresh`, `HostedDomain`, and `IssuedAtClockTolerance` for fine-tuning validation criteria."],["The `ValidationSettings` constructor is available for creating new instances, and properties like `Audience` and `HostedDomain` allow you to specify trusted client IDs and GSuite domains respectively."],["The class includes clock tolerance settings for expiration and issued-at checks, which are useful to compensate for clock skew, and also allows for control over whether new certificates are forcibly downloaded."],["An extension method called `Utilities.ThrowIfNull` is available."]]],[]]