Class DataTypeCacheRefresher.JsonPayload
Represents the JSON payload for data type cache refresh operations.
Inheritance
object
Namespace: Umbraco.Cms.Core.Cache
Assembly: Umbraco.Core.dll
Syntax
public class DataTypeCacheRefresher.JsonPayload
Constructors
View SourceJsonPayload(int, Guid, bool)
Initializes a new instance of the DataTypeCacheRefresher.JsonPayload class.
Declaration
public JsonPayload(int id, Guid key, bool removed)
Parameters
| Type | Name | Description |
|---|---|---|
| int | id | The identifier of the data type. |
| Guid | key | The unique key of the data type. |
| bool | removed | Whether the data type was removed. |
Properties
View SourceId
Gets the identifier of the data type.
Declaration
public int Id { get; }
Property Value
| Type | Description |
|---|---|
| int |
Key
Gets the unique key of the data type.
Declaration
public Guid Key { get; }
Property Value
| Type | Description |
|---|---|
| Guid |
Removed
Gets a value indicating whether the data type was removed.
Declaration
public bool Removed { get; }
Property Value
| Type | Description |
|---|---|
| bool |