JwtPayload.IssuedAt Property
Gets the 'value' of the Issued At claim from JSON in the form of { iat, 'value' }.
Namespace: System.IdentityModel.Tokens
Assembly: System.IdentityModel.Tokens.Jwt (in System.IdentityModel.Tokens.Jwt.dll)
Syntax
'Declaration
Public ReadOnly Property IssuedAt As Nullable(Of Integer)
public Nullable<int> IssuedAt { get; }
public:
property Nullable<int> IssuedAt {
Nullable<int> get ();
}
member IssuedAt : Nullable<int> with get
function get IssuedAt () : Nullable<int>
Property Value
Type: System.Nullable<Int32>
Returns Int32.
Remarks
If the Issued At claim is not found or cannot be converted to Int32, null is returned.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.