JsonWebToken.TryGetValue<T>(String, T) 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.
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.