Show / Hide Table of Contents

Class TokenEndpointResponseJson

Inheritance
object
TokenEndpointResponseJson
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: GitCredentialManager.Authentication.OAuth.Json
Assembly: Algenta.Colectica.Repository.Client.dll
Syntax
public class TokenEndpointResponseJson

Properties

AccessToken

Declaration
[JsonProperty("access_token", Required = Required.Always)]
public string AccessToken { get; set; }
Property Value
Type Description
string

ExpiresIn

Declaration
[JsonProperty("expires_in")]
[JsonConverter(typeof(TimeSpanSecondsConverter))]
public TimeSpan? ExpiresIn { get; set; }
Property Value
Type Description
TimeSpan?

RefreshToken

Declaration
[JsonProperty("refresh_token")]
public string RefreshToken { get; set; }
Property Value
Type Description
string

Scope

Declaration
[JsonProperty("scope")]
public virtual string Scope { get; set; }
Property Value
Type Description
string

TokenType

Declaration
[JsonProperty("token_type", Required = Required.Always)]
public string TokenType { get; set; }
Property Value
Type Description
string

Methods

ToResult()

Declaration
public OAuth2TokenResult ToResult()
Returns
Type Description
OAuth2TokenResult
In this article
Back to top Generated by DocFX