Share via


JwtPayload.AddClaim(Claim) Method

Definition

Adds a JSON object representing the Claim to the JwtPayload

public void AddClaim (System.Security.Claims.Claim claim);
member this.AddClaim : System.Security.Claims.Claim -> unit
Public Sub AddClaim (claim As Claim)

Parameters

claim
Claim

{ 'Claim.Type', 'Claim.Value' } is added. If a JSON object is found with the name == Type then a { 'Claim.Type', List<object> } will be created to contain the duplicate values.

Exceptions

'claim' is null.

Remarks

See AddClaims(IEnumerable<Claim>) For details on how OutboundClaimTypeMap is applied.

Applies to