Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PartialCachingControl.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f59aa9ec202e46bb09c7c54ee614484e493ac734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// System.Web.UI.PartialCachingControl.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (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;} 
		}
	}
}