BasePartialCachingControl.cs 894 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // System.Web.UI.BasePartialCachingControl.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. using System.Web.Caching;
  12. namespace System.Web.UI
  13. {
  14. [ToolboxItem (false)]
  15. public abstract class BasePartialCachingControl : Control
  16. {
  17. private CacheDependency dependency;
  18. protected BasePartialCachingControl()
  19. {
  20. }
  21. internal abstract Control CreateControl ();
  22. [MonoTODO]
  23. public override void Dispose ()
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. protected override void OnInit (EventArgs e)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. protected override void Render (HtmlTextWriter output)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. public CacheDependency Dependency {
  38. get {return dependency;}
  39. set {dependency = value;}
  40. }
  41. }
  42. }