IdentityRoleClaim<TKey> Class

Summary

EntityType that represents one specific role claim

Syntax

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

GitHub

View on GitHub

class Microsoft.AspNet.Identity.EntityFramework.IdentityRoleClaim<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; }
RoleId()

User Id for the role this claim belongs to

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