IOleCache2::UpdateCache method
Updates the specified caches. This method is used when the application needs precise control over caching.
Syntax
HRESULT UpdateCache( [in] LPDATAOBJECT pDataObject, [in] DWORD grfUpdf, [in] LPVOID pReserved );
Parameters
- pDataObject [in]
-
A pointer to the IDataObject interface on the data object from which the cache is updated. Object handlers and in-process servers typically pass a non-NULL value. A container application usually passes NULL, and the source is obtained from the currently running object.
- grfUpdf [in]
-
The type of cache to be updated. This parameter can be one or more of the following values.
Value Meaning - UPDFCACHE_NODATACACHE
Updates caches created by using ADVF_NODATA in the call to IOleCache::Cache.
- UPDFCACHE_ONSAVECACHE
Updates caches created by using ADVFCACHE_ONSAVE in the call to IOleCache::Cache.
- UPDFCACHE_ONSTOPCACHE
Updates caches created by using ADVFCACHE_ONSTOP in the call to IOleCache::Cache.
- UPDFCACHE_NORMALCACHE
Dynamically updates the caches (as is normally done when the object sends out OnDataChange notices).
- UPDFCACHE_IFBLANK
Updates the cache if blank, regardless of any other flag specified.
- UPDFCACHE_ONLYIFBLANK
Updates only caches that are blank.
- UPDFCACHE_ IFBLANKORONSAVECACHE
The equivalent of using an OR operation to combine UPDFCACHE_IFBLANK and UPDFCACHE_ONSAVECACHE.
- UPDFCACHE_ALL
Updates all caches.
- UPDFCACHE_ ALLBUTNODATACACHE
Updates all caches except those created with ADVF_NODATA in the call to IOleCache::Cache. Thus, you can control updates to the caches created with the ADVF_NODATA flag and only update these caches explicitly.
- pReserved [in]
-
This parameter is reserved and must be NULL.
Return value
This method returns S_OK on success. Other possible return values include the following.
| Return code | Description |
|---|---|
|
One of the arguments is not valid. |
|
An unexpected error has occurred. |
|
Insufficient memory is available for this operation. |
|
The specified pDataObject is not running. |
|
None of the caches were updated. |
|
Some of the caches were updated. |
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
IDL |
|
|
IID |
IID_IOleCache2 is defined as 00000128-0000-0000-C000-000000000046 |
See also