CacheEntryChangeMonitor Constructor

Definition

Initializes a new instance of the CacheEntryChangeMonitor class. This constructor is called from constructors in derived classes to initialize the base class.

protected:
 CacheEntryChangeMonitor();
protected CacheEntryChangeMonitor ();
Protected Sub New ()

Remarks

The CacheEntryChangeMonitor class has a parameterless constructor.

Notes to Inheritors

The constructor of a derived class must set the UniqueId property, begin monitoring, and call InitializationComplete() before the constructor returns. If a dependency changes before initialization is complete (for example, if a dependent cache key is not found in the cache), the constructor must call the OnChanged(Object) method. The constructor can call the Dispose() method only after InitializationComplete() is called, because Dispose() throws an exception if initialization is not completed.

Applies to