This documentation is archived and is not being maintained.

CacheDependency Constructor

Initializes a new instance of the CacheDependency class.

Namespace:  System.Web.Caching
Assembly:  System.Web (in System.Web.dll)

protected:
CacheDependency()

If you want to derive your own class from CacheDependency, implement this version of the CacheDependency constructor.

The following code example is a class that implements this version of the CacheDependency constructor as all classes that derive from CacheDependency are required to.

' Declare the class. 
Public Class CustomCacheDependency 
   Inherits CacheDependency

     ' Constructor with no arguments  
     ' provided by CacheDependency class. 
     Public Sub New()
     End Sub ' New 

     ' Declare a Boolean field named disposedValue. 
     ' This will be used by Disposed property. 
     Private disposedValue As Boolean                 

     ' Create accessors for the Disposed property. 
     Public Property Disposed As Boolean 
       Get 
           Return disposedValue
       End Get 
       Set (ByVal value As Boolean)
           disposedValue = value
       End Set 
     End Property 

     ' Create a public method that sets the latest 
     ' changed time of the CustomCacheDependency 
     ' and notifies the underlying CacheDependency that the  
     ' dependency has changed, even though the HasChanged 
     ' property is false. 
     Public Sub ResetDependency()
        If Me.HasChanged = False              
           SetUtcLastModified(DateTime.MinValue)
           NotifyDependencyChanged(Me, EventArgs.Empty)
        End If 
     End Sub 

     ' Overrides the DependencyDispose method to set the 
     ' Disposed proerty to true. This method automatically 
     ' notifies the underlying CacheDependency object to  
     ' release any resources associated with this class.  
     Protected Overrides Sub DependencyDispose()
        Disposed = True 
     End Sub 


 End Class

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: