View Source
Class CacheInstructionDto
Assembly: Umbraco.Infrastructure.dll
Syntax
[TableName("umbracoCacheInstruction")]
[PrimaryKey("id")]
[ExplicitColumns]
public class CacheInstructionDto
Fields
View Source
TableName
Declaration
public const string TableName = "umbracoCacheInstruction"
Field Value
Properties
View Source
Id
Declaration
[Column("id")]
[PrimaryKeyColumn(AutoIncrement = true, Name = "PK_umbracoCacheInstruction")]
public int Id { get; set; }
Property Value
View Source
InstructionCount
Declaration
[Column("instructionCount")]
public int InstructionCount { get; set; }
Property Value
View Source
Instructions
Declaration
[Column("jsonInstruction")]
[SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
public string Instructions { get; set; }
Property Value
View Source
OriginIdentity
Declaration
[Column("originated")]
[Length(500)]
public string OriginIdentity { get; set; }
Property Value
View Source
UtcStamp
Declaration
[Column("utcStamp")]
public DateTime UtcStamp { get; set; }
Property Value
| Type |
Description |
| DateTime |
|