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

UrlBuilder.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: affc57c27b1e33ff8d42ef38e683d512c38d6b56 (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
28
29
30
31
32
33
//
// System.Web.UI.Design.UrlBuilder
//
// Authors:
//      Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) 2004 Novell
//

using System.ComponentModel;

namespace System.Web.UI.Design
{
	public sealed class UrlBuilder
	{
		private UrlBuilder ()
		{
		}

		[MonoTODO]
		public static string BuildUrl (IComponent component, System.Windows.Forms.Control owner, string initialUrl, string caption, string filter)
		{
			return UrlBuilder.BuildUrl (component, owner, initialUrl, 
				caption, filter, UrlBuilderOptions.None);
		}

		[MonoTODO]
		public static string BuildUrl (IComponent component, System.Windows.Forms.Control owner, string initialUrl, string caption, string filter, UrlBuilderOptions options)
		{
			throw new NotImplementedException ();
		}
	}
}