Class AccessToken
Defines an access token that is returned from the oauth/token call
Inheritance
System.Object
AccessToken
Namespace: ImageVault.Common.Security
Assembly: ImageVault.Common.dll
Syntax
public class AccessToken : Object
Constructors
AccessToken()
Declaration
public AccessToken()
Properties
ExpiresIn
Get/Sets the ExpiresIn of the AccessToken
Declaration
public int ExpiresIn { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RefreshToken
Get/Sets the RefreshToken of the AccessToken
Declaration
public string RefreshToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Token
Get/Sets the Token of the AccessToken
Declaration
public string Token { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TokenType
Get/Sets the TokenType of the AccessToken
Declaration
public string TokenType { get; set; }
Property Value
Type | Description |
---|---|
System.String |