JwtPayload.AddClaim(Claim) 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.
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.