Share via


JsonWebToken.TryGetPayloadValue<T>(String, T) Method

Definition

Try to get the 'value' corresponding to key from the JWT payload transformed as type 'T'.

public bool TryGetPayloadValue<T> (string key, out T value);
member this.TryGetPayloadValue : string * 'T -> bool
Public Function TryGetPayloadValue(Of T) (key As String, ByRef value As T) As Boolean

Type Parameters

T

Parameters

key
String
value
T

Returns

true if successful, false otherwise.

Remarks

The expectation is that the 'value' corresponds to a type are expected in a JWT token. The 5 basic types: number, string, true / false, nil, array (of basic types). This is not a general purpose translation layer for complex types.

Applies to