Show / Hide Table of Contents

Class DeviceAuthorizationEndpointResponseJson

Inheritance
object
DeviceAuthorizationEndpointResponseJson
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 DeviceAuthorizationEndpointResponseJson

Properties

DeviceCode

Declaration
[JsonProperty("device_code", Required = Required.Always)]
public string DeviceCode { 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?

PollingInterval

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

UserCode

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

VerificationUri

Declaration
[JsonProperty("verification_uri", Required = Required.Always)]
public Uri VerificationUri { get; set; }
Property Value
Type Description
Uri

Methods

ToResult()

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