Class AccessToken

Definition

Namespace:
Tizen.Account.OAuth2
Assembly:
Tizen.Account.OAuth2.dll
API Level:
3

Class containing access token and related information.

C#
Copy
public class AccessToken
Inheritance
AccessToken

Properties

View Source

ExpiresIn

The lifetime in seconds of the access token.

Declaration
C#
Copy
public long ExpiresIn { get; }
Property Value
Type Description
System.Int64
API Level: 3
View Source

Scope

The scope of the access token.

Declaration
C#
Copy
public IEnumerable<string> Scope { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.String>
API Level: 3
View Source

Token

The access token issued by the authorization server.

Declaration
C#
Copy
public string Token { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

TokenType

The type of the access token.

Declaration
C#
Copy
public string TokenType { get; }
Property Value
Type Description
System.String
API Level: 3