ControlCachePolicy.Dependency Property

Definition

Gets or sets an instance of the CacheDependency class associated with the cached user control output.

public:
 property System::Web::Caching::CacheDependency ^ Dependency { System::Web::Caching::CacheDependency ^ get(); void set(System::Web::Caching::CacheDependency ^ value); };
public System.Web.Caching.CacheDependency Dependency { get; set; }
member this.Dependency : System.Web.Caching.CacheDependency with get, set
Public Property Dependency As CacheDependency

Property Value

The CacheDependency associated with the control. The default is null.

Exceptions

The user control is not associated with a BasePartialCachingControl and is not cacheable.

-or-

The Dependency property is set outside of the initialization and rendering stages of the control.

Remarks

The Dependency property delegates to the Dependency property of the BasePartialCachingControl control that wraps the user control. When the CacheDependency instance is invalidated, the user control is removed from the cache.

Applies to

See also