Share via


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

Definition

Tries to get the claim from the JWT payload.

public bool TryGetValue<T> (string key, out T value);
member this.TryGetValue : string * 'T -> bool
Public Function TryGetValue(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 'value' a type T if possible.

Applies to