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.

27 lines
557 B

  1. using System;
  2. using System.Web;
  3. using System.IO;
  4. using System.Xml;
  5. using System.Xml.Schema;
  6. using System.Collections;
  7. using System.Data.SqlClient;
  8. using System.Xml.Serialization;
  9. using Microsoft.Uddi;
  10. namespace Microsoft.Uddi.Extensions
  11. {
  12. //
  13. // All Extension namespaces should go in here
  14. //
  15. public sealed class Namespaces
  16. {
  17. public const string GetRelatedCategories = "urn:uddi-microsoft-com:api_v2_extensions";
  18. private Namespaces()
  19. {
  20. //
  21. // Don't let anyone construct an instance of this class
  22. //
  23. }
  24. }
  25. }