Class AccessToken
Defines an access token that is returned from the oauth/token call
Inheritance
System.Object
AccessToken
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ImageVault.Common.Security
Assembly: ImageVault.Common.dll
Syntax
public class AccessToken
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 |