Enum RefreshMethodType
Describes RefreshInstruction refresh action type.
Namespace: Umbraco.Cms.Core.Sync
Assembly: Umbraco.Core.dll
Syntax
public enum RefreshMethodType
Remarks
This enum is exposed in CacheRefresher web service through RefreshInstruction, so it is kept as-is for backward compatibility reasons.
Fields
| Name | Description |
|---|---|
| RefreshAll | Refresh all cached items of the specified type. |
| RefreshByGuid | Refresh a single item by its GUID identifier. |
| RefreshById | Refresh a single item by its integer identifier. |
| RefreshByIds | Refresh multiple items by their integer identifiers. |
| RefreshByJson | Refresh items using JSON payload data. |
| RemoveById | Remove an item by its integer identifier. |