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