Table of Contents

Interface IIdentityRoleClaim<TKey>

Namespace
LinqToDB.Identity
Assembly
LinqToDB.Identity.dll

Represents a claim that is granted to all users within a role.

public interface IIdentityRoleClaim<TKey> : IClameConverter where TKey : IEquatable<TKey>

Type Parameters

TKey

The type of the primary key of the role associated with this claim.

Inherited Members

Properties

ClaimType

Gets or sets the claim type for this claim.

string ClaimType { get; set; }

Property Value

string

ClaimValue

Gets or sets the claim value for this claim.

string ClaimValue { get; set; }

Property Value

string

Id

Gets or sets the identifier for this role claim.

int Id { get; set; }

Property Value

int

RoleId

Gets or sets the of the primary key of the role associated with this claim.

TKey RoleId { get; set; }

Property Value

TKey