We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdea8c2 commit 682b765Copy full SHA for 682b765
src/Umbraco.Core/Sync/RefreshMethodType.cs
@@ -10,12 +10,12 @@ public enum RefreshMethodType
10
// that enum should get merged somehow with MessageType and renamed somehow
11
// but at the moment it is exposed in CacheRefresher webservice through RefreshInstruction
12
// so for the time being we keep it as-is for backward compatibility reasons
13
- RefreshAll,
14
- RefreshByGuid,
15
- RefreshById,
16
- RefreshByIds,
17
- RefreshByJson,
18
- RemoveById,
+ RefreshAll = 0,
+ RefreshByGuid = 1,
+ RefreshById = 2,
+ RefreshByIds = 3,
+ RefreshByJson = 4,
+ RemoveById = 5,
19
20
// would adding values break backward compatibility?
21
// RemoveByIds
0 commit comments