2
0

PartialCachingControl.cs 681 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Web.UI.PartialCachingControl.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. namespace System.Web.UI
  12. {
  13. public class PartialCachingControl : BasePartialCachingControl
  14. {
  15. private Type controlType;
  16. private Control createdControl;
  17. internal PartialCachingControl (Type createCachedControlType)
  18. {
  19. controlType = createCachedControlType;
  20. }
  21. [MonoTODO ("Implement")]
  22. internal override Control CreateControl()
  23. {
  24. createdControl = null;
  25. throw new NotImplementedException ();
  26. }
  27. public Control CachedControl {
  28. get {return createdControl;}
  29. }
  30. }
  31. }