JwtPayload.Nbf 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.
Caution
int? JwtPayload.Nbf is deprecated and will be removed in a future release. Use long? JwtPayload.NotBefore instead. For more information, see https://aka.ms/IdentityModel/7-breaking-changes
Gets the 'value' of the 'expiration' claim { nbf, 'value' }.
[System.Obsolete("`int? JwtPayload.Nbf` is deprecated and will be removed in a future release. Use `long? JwtPayload.NotBefore` instead. For more information, see https://aka.ms/IdentityModel/7-breaking-changes")]
public int? Nbf { get; }
[<System.Obsolete("`int? JwtPayload.Nbf` is deprecated and will be removed in a future release. Use `long? JwtPayload.NotBefore` instead. For more information, see https://aka.ms/IdentityModel/7-breaking-changes")>]
member this.Nbf : Nullable<int>
Public ReadOnly Property Nbf As Nullable(Of Integer)
Property Value
- Attributes
Remarks
If the 'notbefore' claim is not found OR could not be converted to Int32, null is returned.