Class AccessToken
Definition
- Assembly:
- Tizen.Account.OAuth2.dll
Class containing access token and related information.
public class AccessToken
- Inheritance
-
objectAccessToken
Properties
View SourceExpiresIn
The lifetime in seconds of the access token.
Declaration
public long ExpiresIn { get; }
Property Value
Type | Description |
---|---|
long |
Scope
The scope of the access token.
Declaration
public IEnumerable<string> Scope { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> |
Token
The access token issued by the authorization server.
Declaration
public string Token { get; }
Property Value
Type | Description |
---|---|
string |
TokenType
The type of the access token.
Declaration
public string TokenType { get; }
Property Value
Type | Description |
---|---|
string |