OnDemandHydrationPolicy Enumeration |
Allows a sync provider to control behavior for retrieving data for a placeholder file.
Namespace:
ShellBoost.Core.Synchronization
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public enum OnDemandHydrationPolicy
Members
| Member name | Value | Description |
---|
| Partial | 0 |
Hydration is performed at the user's request. Hydration does not continue in the background.
|
| Progressive | 1 |
On demand hydration is performed. If hydration has not finished, it will continue in the background.
|
| Full | 2 |
Full hydration is performed. Ensures that the placeholder is available locally before completing a request.
|
| AlwaysFull | 3 |
If this is selected and a placeholder cannot be fully hydrated, the platform will fail with with an ERROR_CLOUD_FILE_INVALID_REQUEST error.
|
See Also