Class RefreshTokenResult
The refresh token result.
Inheritance
System.Object
RefreshTokenResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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 |
---|---|
System.String | The access token. |
Claims
Gets or sets the claims.
Declaration
public IEnumerable<Claim>? Claims { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<IEnumerable<System.Security.Claims.Claim>> | The claims. |
RefreshToken
Gets or sets the refresh token.
Declaration
public string RefreshToken { get; set; }
Property Value
Type | Description |
---|---|
System.String | The refresh token. |
Subject
Gets or sets the subject.
Declaration
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Nullable<DateTime> | The UTC time when the access token expires. |