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

IListControl.cs « System.Web.UI.MobileControls « System.Web.Mobile « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4222d8f6ac3fe81f2502024d4908fe166550b127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Project   : Mono
 * Namespace : System.Web.UI.MobileControls
 * Class     : IListControl
 * Author    : Gaurav Vaish
 *
 * Copyright : 2003 with Gaurav Vaish, and with
 *             Ximian Inc
 */

namespace System.Web.UI.MobileControls
{
	interface IListControl
	{
		void OnItemDataBind(ListDataBindEventArgs e);

		bool TrackingViewState { get; }
	}
}