Show / Hide Table of Contents

Class AuthenticationResponse

Authentication response.

Inheritance
object
AuthenticationResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.

In this article
Back to top Copyright © ComponentSpace Pty Ltd 2022-2026. All rights reserved.