Class AuthenticationResponse
Authentication response.
Inherited Members
Namespace: ComponentSpace.OpenID.Messages
Assembly: ComponentSpace.OpenID.dll
Syntax
public class AuthenticationResponse
Properties
AccessToken
Gets or sets the access token.
Declaration
public string? AccessToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The access token. |
Code
Gets or sets the authorization code.
Declaration
public string? Code { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The authorization code. |
ExpiresIn
Gets or sets the lifetime, in seconds.
Declaration
public int? ExpiresIn { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The lifetime, in seconds. |
IdToken
Gets or sets the ID token.
Declaration
public string? IdToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The ID token. |
RefreshToken
Gets or sets the refresh token.
Declaration
public string? RefreshToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The refresh token. |
State
Gets or sets the state.
Declaration
public string? State { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The state. |
TokenType
Gets or sets the token type.
Declaration
public string? TokenType { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The token type. |