JsonWebToken.GetPayloadValue<T>(String) Method
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.
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
The value as T
.
Exceptions
Thrown 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.