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

UrlBuilderOptions.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: e3a3ab116ce6050b8239a4e9fe4d227400906ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Web.UI.Design.UrlBuilderOptions
//
// Author(s):
//  Jackson Harper (jackson@ximian.com)
//
// (C) 2003 Novell, Inc (http://www.novell.com)
//

namespace System.Web.UI.Design {
	[Flags]
	public enum UrlBuilderOptions {
		None,
		NoAbsolute
	}
}