Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

  1. using System;
  2. using System.Web;
  3. using System.Web.UI;
  4. using System.Web.UI.HtmlControls;
  5. using System.Web.UI.WebControls;
  6. using System.Data;
  7. using System.Collections.Specialized;
  8. using UDDI.API;
  9. using UDDI.API.Service;
  10. using UDDI.API.Business;
  11. namespace UDDI.VisualStudio
  12. {
  13. internal struct StateParamNames
  14. {
  15. public static string SearchID = "searchID";
  16. public static string SearchType = "searchType";
  17. public static string TModelKey = "tModelKey";
  18. public static string ServiceKey = "serviceKey";
  19. public static string SearchParams = "searchParams";
  20. public static string CacheObject = "cacheObject";
  21. public static string Results = "results";
  22. public static string CurrentPage = "currentPage";
  23. public static string KeyValue = "keyValue";
  24. }
  25. internal struct Constants
  26. {
  27. //
  28. // Number of results to show per page
  29. //
  30. public static int NumResultsPerPage = 3;
  31. public static int MaxPagesToShow = 5;
  32. }
  33. public enum SearchType
  34. {
  35. SearchByService = 0,
  36. SearchByProvider = 1,
  37. SearchFromBrowse = 2,
  38. }
  39. }