TokenValidationParameters.CreateClaimsIdentity(SecurityToken, String) Method

Definition

Creates a ClaimsIdentity using:

AuthenticationType

'NameClaimType': If NameClaimTypeRetriever is set, call delegate, else call NameClaimType. If the result is a null or empty string, use DefaultNameClaimType

.

'RoleClaimType': If RoleClaimTypeRetriever is set, call delegate, else call RoleClaimType. If the result is a null or empty string, use DefaultRoleClaimType

.
public virtual System.Security.Claims.ClaimsIdentity CreateClaimsIdentity (Microsoft.IdentityModel.Tokens.SecurityToken securityToken, string issuer);
abstract member CreateClaimsIdentity : Microsoft.IdentityModel.Tokens.SecurityToken * string -> System.Security.Claims.ClaimsIdentity
override this.CreateClaimsIdentity : Microsoft.IdentityModel.Tokens.SecurityToken * string -> System.Security.Claims.ClaimsIdentity
Public Overridable Function CreateClaimsIdentity (securityToken As SecurityToken, issuer As String) As ClaimsIdentity

Parameters

securityToken
SecurityToken
issuer
String

Returns

A ClaimsIdentity with Authentication, NameClaimType and RoleClaimType set.

Applies to