Table of Contents

Interface IIdentityUserClaim<TKey>

Namespace
LinqToDB.Identity
Assembly
LinqToDB.Identity.dll

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

string

ClaimValue

Gets or sets the claim value for this claim.

string ClaimValue { get; set; }

Property Value

string

UserId

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

TKey UserId { get; set; }

Property Value

TKey