DekGenius.com
[ Team LiB ] Previous Section Next Section

BasePartialCachingControldisposable

System.Web.UI (system.web.dll)abstract class

This base class supports fragment caching, which allows portions of an ASP.NET page to be cached. This class is inherited by the PartialCachingControl and StaticPartialCachingControl classes.

public abstract class BasePartialCachingControl : Control {
// Protected Constructors
   protected BasePartialCachingControl( );
// Public Instance Properties
   public CacheDependency Dependency{set; get; }
// Public Instance Methods
   public override void Dispose( );                  // overrides Control
// Protected Instance Methods
   protected override void OnInit(EventArgs e);                 // overrides Control
   protected override void Render(HtmlTextWriter output);       // overrides Control
}

Hierarchy

System.Object Control(System.ComponentModel.IComponent, System.IDisposable, IParserAccessor, IDataBindingsAccessor) BasePartialCachingControl

Subclasses

PartialCachingControl, StaticPartialCachingControl

    [ Team LiB ] Previous Section Next Section