This documentation is archived and is not being maintained.
VirtualPathProvider::GetCacheDependency Method
Visual Studio 2010
Creates a cache dependency based on the specified virtual paths.
Assembly: System.Web (in System.Web.dll)
public: virtual CacheDependency^ GetCacheDependency( String^ virtualPath, IEnumerable^ virtualPathDependencies, DateTime utcStart )
Parameters
- virtualPath
- Type: System::String
The path to the primary virtual resource.
- virtualPathDependencies
- Type: System.Collections::IEnumerable
An array of paths to other resources required by the primary virtual resource.
- utcStart
- Type: System::DateTime
The UTC time at which the virtual resources were read.
Return Value
Type: System.Web.Caching::CacheDependencyA CacheDependency object for the specified virtual resources.
The default implementation of the GetCacheDependency method returns nullptr. To cache virtual resources for later use you must override either the GetCacheDependency method or the GetFileHash method.
The following code example implements the GetCacheDependency method for a custom VirtualPathProvider class. For the full code required to run the example, see the Example section of the VirtualPathProvider class overview topic.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: