<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.14.0" />

Microsoft.IdentityModel.Tokens.ITokenReplayCache

public interface ITokenReplayCache
Interface that defines a simple cache for tacking replaying of security tokens.
namespace Microsoft.IdentityModel.Tokens { public interface ITokenReplayCache { bool TryAdd(string securityToken, DateTime expiresOn); bool TryFind(string securityToken); } }