Class CacheInstruction
Represents a cache instruction.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
[DataContract(IsReference = true)]
public class CacheInstruction
Constructors
View SourceCacheInstruction(Int32, DateTime, String, String, Int32)
Initializes a new instance of the Cache
Declaration
public CacheInstruction(int id, DateTime utcStamp, string instructions, string originIdentity, int instructionCount)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | |
Date |
utcStamp | |
System. |
instructions | |
System. |
originIdentity | |
System. |
instructionCount |
Properties
View SourceId
Cache instruction Id.
Declaration
public int Id { get; }
Property Value
Type | Description |
---|---|
System. |
InstructionCount
Count of instructions.
Declaration
public int InstructionCount { get; }
Property Value
Type | Description |
---|---|
System. |
Instructions
Serialized instructions.
Declaration
public string Instructions { get; }
Property Value
Type | Description |
---|---|
System. |
OriginIdentity
Identity of server originating the instruction.
Declaration
public string OriginIdentity { get; }
Property Value
Type | Description |
---|---|
System. |
UtcStamp
Cache instruction created date.
Declaration
public DateTime UtcStamp { get; }
Property Value
Type | Description |
---|---|
Date |