| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Web.UI.PartialCachingControl.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (C) 2003 Andreas Nahr
- //
- using System;
- using System.ComponentModel;
- namespace System.Web.UI
- {
- public class PartialCachingControl : BasePartialCachingControl
- {
- private Type controlType;
- private Control createdControl;
- internal PartialCachingControl (Type createCachedControlType)
- {
- controlType = createCachedControlType;
- }
- [MonoTODO ("Implement")]
- internal override Control CreateControl()
- {
- createdControl = null;
- throw new NotImplementedException ();
- }
- public Control CachedControl {
- get {return createdControl;}
- }
- }
- }
|