CacheDependency.CacheDependency(String) Constructor
Assembly: System.Web (in system.web.dll)
If the directory or file specified in the filename parameter is not found in the file system, it will be treated as missing. If the directory or file is missing when the object with the dependency is added to the Cache, the cached object will be removed from the Cache when the directory or file is created.
For example, assume that you add an object to the Cache with a dependency on the following file path: c:\stocks\xyz.dat. If that file is not found when the CacheDependency object is created, but is created later, the cached object is removed upon the creation of the xyz.dat file.
The following code example creates an instance of the CacheDependency class with a dependency on an XML file. The System.Web.Caching.Cache.Insert method then adds an item to the Cache that is dependent upon that file.
CacheDependency dep = new CacheDependency(get_Server().
MapPath("isbn.xml"));
get_Cache().Insert("ISBNData", source, dep);
You can also use the following technique to add an item to the Cache with a dependency on a file.