Share via


JsonWebToken.GetClaim(String) Method

Definition

Gets a Claim representing the { key, 'value' } pair corresponding to the provided key.

public System.Security.Claims.Claim GetClaim (string key);
member this.GetClaim : string -> System.Security.Claims.Claim
Public Function GetClaim (key As String) As Claim

Parameters

key
String

Returns

Remarks

A Claim requires each value to be represented as a string. If the value was not a string, then Type contains the json type. JsonClaimValueTypes and ClaimValueTypes to determine the json type.

If the key has no corresponding value, this method will throw.

Applies to