다음을 통해 공유


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

Definition

Overloads

TryGetValue<T>(String, T)

Tries to get the claim from the JWT payload.

TryGetValue<T>(String, T)

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