CacheUpdateStrategy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates how the cache must be updated.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum CacheUpdateStrategy
[<System.Flags>]
type CacheUpdateStrategy =
Public Enum CacheUpdateStrategy
- Inheritance
-
CacheUpdateStrategy
- Attributes
Fields
Name | Value | Description |
---|---|---|
Incremental | 0 | Update the cache by adding/removing the delta that changed. |
AddSingleItem | 1 | Update the cache by adding a single item. |
RemoveSingleItem | 2 | Update the cache by removing a single item. |
RenameSingleItem | 3 | Update the cache by removing the old item and add a new one with a different full path. |
Clear | 4 | Clear the cache. |