Search Results for

    Show / Hide Table of Contents
    View Source

    Class CacheInstructionDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    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
    Type Description
    string

    Properties

    View Source

    Id

    Declaration
    [Column("id")]
    [PrimaryKeyColumn(AutoIncrement = true, Name = "PK_umbracoCacheInstruction")]
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    InstructionCount

    Declaration
    [Column("instructionCount")]
    public int InstructionCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    Instructions

    Declaration
    [Column("jsonInstruction")]
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    public string Instructions { get; set; }
    Property Value
    Type Description
    string
    View Source

    OriginIdentity

    Declaration
    [Column("originated")]
    [Length(500)]
    public string OriginIdentity { get; set; }
    Property Value
    Type Description
    string
    View Source

    UtcStamp

    Declaration
    [Column("utcStamp")]
    public DateTime UtcStamp { get; set; }
    Property Value
    Type Description
    DateTime
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX