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

UserControlControlBuilder.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: 11566a4ea1df4df0a9c75a46cf9febae0919a7e0 (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
//
// System.Web.UI.UserControlControlBuilder
//
// Authors:
//	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2003 Ximian, Inc (http://www.ximian.com)
//

namespace System.Web.UI
{
	public class UserControlControlBuilder : ControlBuilder
	{
		public override bool NeedsTagInnerText ()
		{
			return false;
		}

		[MonoTODO]
		public override void SetTagInnerText (string text)
		{
			// Do something with the text
		}
	}
}