Class DbOAuthRefreshToken
Summary description for DbOAuthRefreshToken.
Inheritance
System.Object
DbOAuthRefreshToken
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.Core.Common.DbEntities
Assembly: ImageVault.Core.dll
Syntax
public class DbOAuthRefreshToken
Constructors
DbOAuthRefreshToken()
Declaration
public DbOAuthRefreshToken()
Properties
ClientIdentity
Get/Sets the ClientIdentity of the DbOAuthRefreshToken
Declaration
public string ClientIdentity { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Data
Data needed for the RefreshToken
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Expires
Expiration of the RefreshToken
Declaration
[DateTimeKind(DateTimeKind.Utc)]
public DateTime? Expires { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
RefreshToken
Get/Sets the RefreshToken of the DbOAuthRefreshToken
Declaration
public string RefreshToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ResourceOwner
Get/Sets the ResourceOwner of the DbOAuthRefreshToken
Declaration
public string ResourceOwner { get; set; }
Property Value
Type | Description |
---|---|
System.String |