Microsoft.IdentityModel.Tokens.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);
}
}