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

DataBindingValueUIHandler.cs « System.Web.UI.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1050b9262807031954a37e0e99a1b1e741cd3c9e (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
//
// System.Web.UI.Design.DataBindingValueUIHandler
//
// Authors:
//      Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) 2004 Novell
//

using System.Collections;
using System.ComponentModel;

namespace System.Web.UI.Design
{
	public class DataBindingValueUIHandler
	{
		public DataBindingValueUIHandler ()
		{
		}

		[MonoTODO]
		public void OnGetUIValueItem (ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList)
		{
			throw new NotImplementedException ();
		}
	}
}