Class RefreshTokenResult
The refresh token result.
Inherited Members
Namespace: ComponentSpace.OpenID
Assembly: ComponentSpace.OpenID.dll
Syntax
public class RefreshTokenResult
Properties
AccessToken
Gets or sets the access token.
Declaration
public string? AccessToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The access token. |
Claims
Gets or sets the claims.
Declaration
public IEnumerable<Claim>? Claims { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<Claim> | The claims. |
RefreshToken
Gets or sets the refresh token.
Declaration
public string? RefreshToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The refresh token. |
Subject
Gets or sets the subject.
Declaration
public string? Subject { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The subject. |
UtcAccessTokenExpiresAt
Gets or sets the UTC time when the access token expires.
Declaration
public DateTime? UtcAccessTokenExpiresAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? | The UTC time when the access token expires. |