Compartir a través de


JsonWebToken.GetPayloadValue<T>(String) Method

Definition

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

public T GetPayloadValue<T> (string key);
member this.GetPayloadValue : string -> 'T
Public Function GetPayloadValue(Of T) (key As String) As T

Type Parameters

T

Parameters

key
String

Returns

T

The value as T.

Exceptions

if claim is not found or a transformation to T cannot be made.

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