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

INavigateUIData.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: 334287e581da40c8677f5b65ace5f8a59d9a3195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Web.UI.INavigateUIData
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_1_2
namespace System.Web.UI {
	public interface INavigateUIData {
		string Name { get; }
		string NavigateUrl { get; }
		string Value { get; }	 
	}
}
#endif