Share via


JwtPayload.Exp Property

Definition

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.

Applies to