Bagikan melalui


JwtPayload.Iat Property

Definition

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.

Applies to