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