Class NonceTrackerEntry
- Namespace
- Cuemon.AspNetCore.Authentication
- Assembly
- Cuemon.AspNetCore.Authentication.dll
Represents an individual nonce entry in the INonceTracker.
public class NonceTrackerEntry
- Inheritance
-
NonceTrackerEntry
Constructors
NonceTrackerEntry(Int32, DateTime)
Initializes a new instance of the NonceTrackerEntry class.
public NonceTrackerEntry(int count, DateTime created)
Parameters
count
Int32The number that should be used only once.
created
DateTimeThe timestamp from when this entry was created.
Properties
Count
Gets the number that should be used only once.
public int Count { get; }
Property Value
- Int32
The number that should be used only once.
Created
Gets the timestamp from when this entry was created.
public DateTime Created { get; }
Property Value
- DateTime
The timestamp from when this entry was created.