IdentityUserClaim<TKey> Class

Summary

EntityType that represents one specific user claim

Syntax

public class IdentityUserClaim<TKey> where TKey : IEquatable<TKey>

GitHub

View on GitHub

class Microsoft.AspNet.Identity.EntityFramework.IdentityUserClaim<TKey>

Properties

ClaimType()

Claim type

Return type:System.String
public virtual string ClaimType { get; set; }
ClaimValue()

Claim value

Return type:System.String
public virtual string ClaimValue { get; set; }
Id()

Primary key

Return type:System.Int32
public virtual int Id { get; set; }
UserId()

User Id for the user who owns this claim

Return type:{TKey}
public virtual TKey UserId { get; set; }