2004-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / PartialCachingControl.cs
1 //
2 // System.Web.UI.PartialCachingControl.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 using System;
11 using System.ComponentModel;
12
13 namespace System.Web.UI
14 {
15         public class PartialCachingControl : BasePartialCachingControl
16         {
17
18                 private Type controlType;
19                 private Control createdControl;
20
21                 internal PartialCachingControl (Type createCachedControlType)
22                 {
23                         controlType = createCachedControlType;
24                 }
25
26                 [MonoTODO ("Implement")]
27                 internal override Control CreateControl()
28                 {
29                         createdControl = null;
30                         throw new NotImplementedException ();
31                 }
32
33                 public Control CachedControl {
34                         get {return createdControl;} 
35                 }
36         }
37 }