Class OpenIddictEntityFrameworkCoreToken<TKey, TApplication, TAuthorization>
Represents an OpenIddict token.
Inheritance
Inherited Members
Namespace: OpenIddict.EntityFrameworkCore.Models
Assembly: cs.temp.dll.dll
Syntax
public class OpenIddictEntityFrameworkCoreToken<TKey, TApplication, TAuthorization>
where TKey : IEquatable<TKey> where TApplication : class where TAuthorization : class
Type Parameters
Name | Description |
---|---|
TKey | |
TApplication | |
TAuthorization |
Properties
Application
Gets or sets the application associated with the current token.
Declaration
public virtual TApplication Application { get; set; }
Property Value
Type | Description |
---|---|
TApplication |
Authorization
Gets or sets the authorization associated with the current token.
Declaration
public virtual TAuthorization Authorization { get; set; }
Property Value
Type | Description |
---|---|
TAuthorization |
ConcurrencyToken
Gets or sets the concurrency token.
Declaration
public virtual string ConcurrencyToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreationDate
Gets or sets the UTC creation date of the current token.
Declaration
public virtual DateTime? CreationDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
ExpirationDate
Gets or sets the UTC expiration date of the current token.
Declaration
public virtual DateTime? ExpirationDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Id
Gets or sets the unique identifier associated with the current token.
Declaration
public virtual TKey Id { get; set; }
Property Value
Type | Description |
---|---|
TKey |
Payload
Gets or sets the payload of the current token, if applicable. Note: this property is only used for reference tokens and may be encrypted for security reasons.
Declaration
public virtual string Payload { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Properties
Gets or sets the additional properties serialized as a JSON object,
or null
if no bag was associated with the current token.
Declaration
public virtual string Properties { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RedemptionDate
Gets or sets the UTC redemption date of the current token.
Declaration
public virtual DateTime? RedemptionDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
ReferenceId
Gets or sets the reference identifier associated with the current token, if applicable. Note: this property is only used for reference tokens and may be hashed or encrypted for security reasons.
Declaration
public virtual string ReferenceId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Status
Gets or sets the status of the current token.
Declaration
public virtual string Status { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Subject
Gets or sets the subject associated with the current token.
Declaration
public virtual string Subject { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets or sets the type of the current token.
Declaration
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |