UrlBuilder.cs 770 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // System.Web.UI.Design.UrlBuilder
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.ComponentModel;
  10. namespace System.Web.UI.Design
  11. {
  12. public sealed class UrlBuilder
  13. {
  14. private UrlBuilder ()
  15. {
  16. }
  17. [MonoTODO]
  18. public static string BuildUrl (IComponent component, System.Windows.Forms.Control owner, string initialUrl, string caption, string filter)
  19. {
  20. return UrlBuilder.BuildUrl (component, owner, initialUrl,
  21. caption, filter, UrlBuilderOptions.None);
  22. }
  23. [MonoTODO]
  24. public static string BuildUrl (IComponent component, System.Windows.Forms.Control owner, string initialUrl, string caption, string filter, UrlBuilderOptions options)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. }