JsonWebToken.GetClaim(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 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.