CacheDependency.NotifyDependencyChanged(Object, EventArgs) メソッド

定義

派生CacheDependency クラスによって表される依存関係が変更されたことを基本CacheDependency オブジェクトに通知します。

protected:
 void NotifyDependencyChanged(System::Object ^ sender, EventArgs ^ e);
protected void NotifyDependencyChanged(object sender, EventArgs e);
member this.NotifyDependencyChanged : obj * EventArgs -> unit
Protected Sub NotifyDependencyChanged (sender As Object, e As EventArgs)

パラメーター

sender
Object

イベントのソース。

e
EventArgs

イベント データを格納する EventArgs オブジェクト。

次のコード例は、 CacheDependency クラスから継承するクラスを示しています。 SetUtcLastModified メソッドを使用して依存関係が変更された時刻を変更するパブリック メソッド (ResetDependency) を作成し、NotifyDependencyChanged メソッドを呼び出します。

' Declare the class.
Public Class CustomCacheDependency 
   Inherits CacheDependency

     ' Constructor with no arguments 
     ' provided by CacheDependency class.
     Public Sub New()
     End Sub
   
     ' 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

注釈

CacheDependency クラスから派生するすべてのクラスは、このメソッドを実装する必要があります。

CacheDependency クラスから派生する場合は、オーバーライドしていないメソッドまたはプロパティの基本機能を使用します。 派生クラスのインスタンスを作成すると、キャッシュされた項目を依存させるファイル、キャッシュ キー、データベース テーブル、またはその他の任意のオブジェクトが表されます。 依存関係項目が変更されると、このメソッドは項目が変更されたことを CacheDependency クラスの基本機能に通知し、 HasChanged プロパティと UtcLastModified プロパティの値を更新できるようにします。

適用対象

こちらもご覧ください