Table of Contents

Class IdentityUserToken<TKey>

Namespace
LinqToDB.Identity
Assembly
LinqToDB.Identity.dll

Represents an authentication token for a user.

public class IdentityUserToken<TKey> : IIdentityUserToken<TKey> where TKey : IEquatable<TKey>

Type Parameters

TKey

The type of the primary key used for users.

Inheritance
IdentityUserToken<TKey>
Implements

Properties

LoginProvider

Gets or sets the LoginProvider this token is from.

public virtual string LoginProvider { get; set; }

Property Value

string

Name

Gets or sets the name of the token.

public virtual string Name { get; set; }

Property Value

string

UserId

Gets or sets the primary key of the user that the token belongs to.

public virtual TKey UserId { get; set; }

Property Value

TKey

Value

Gets or sets the token value.

public virtual string Value { get; set; }

Property Value

string