[in] Name of property to invalidate. For more information, see property identifiers.
InvalidateCacheEntry
Retrieves the value of a cache entry if the entry is valid.
Syntax
Section titled “Syntax”void InvalidateCacheEntry(const CString& strPath);Parameters
Section titled “Parameters”strPath
Example
Section titled “Example”The following example demonstrates use of the InvalidateCacheEntry function.
STDMETHODIMP Acme4321::Configure(double Frequency, double Bandwidth){ HRESULT hr = S_OK;
InvalidateCacheEntry(_T("IAcme4321.Frequency"));
return hr;}