Interface IIdentityUserClaim<TKey>
Represents a claim that a user possesses.
public interface IIdentityUserClaim<TKey> : IClameConverter where TKey : IEquatable<TKey>
Type Parameters
TKey
The type used for the primary key for this user that possesses this claim.
- Inherited Members
Properties
ClaimType
Gets or sets the claim type for this claim.
string ClaimType { get; set; }
Property Value
ClaimValue
Gets or sets the claim value for this claim.
string ClaimValue { get; set; }
Property Value
UserId
Gets or sets the primary key of the user associated with this claim.
TKey UserId { get; set; }
Property Value
- TKey